<?php
error_reporting(E_ALL);
ini_set('display_errors',1);
echo '<pre>';
print_r(unserialize(file_get_contents('serialized.txt')));
echo '</pre>';
?>