|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-04-13 05:27 UTC] bernd@php.net
[2002-04-14 18:40 UTC] sniper@php.net
[2002-04-14 18:58 UTC] ian dot ferger at solveris dot com
[2002-04-14 19:16 UTC] mfischer@php.net
[2002-07-02 16:09 UTC] eru@php.net
[2002-11-15 04:06 UTC] philip@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 13:00:01 2025 UTC |
am unable to set unserialize_callback_func using ini_set. I can see it in my php.ini, but when i use the following script (adapted from code given on the unserialize() function page): ini_set('unserialize_callback_func','thecallback'); function thecallback($classname) { echo "calling back"; $filename="includez/".$classname.".cls.php"; include($filename); } after unserializing I would have expected to see the echo statement, but it just wont seem to work at all.