|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-05-08 07:19 UTC] alan_k@php.net
[2003-05-14 11:03 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 18:00:01 2025 UTC |
this fails (output is null): $string = unserialize(implode("", file("serialized_Obj.dat"))); print_r($string) == null; this works: fopen("serialized_Obj.dat"); $string = unserialize(fread($fh, ...)); print_r($string) == the original object.