|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch bug63741.phpt for SPL related Bug #63741Patch version 2012-12-12 20:42 UTC Return to Bug #63741 | Download this patchThis patch is obsolete Obsoleted by patches: This patch renders other patches obsolete Obsolete patches: Patch Revisions:
Developer: bobwei9@hotmail.com
--TEST--
Bug #63741 (Crash when autoloading from spl)
--SKIPIF--
<?php @eval('$eval = "exists";'); if (!isset($eval)) die("eval not available"); ?>
--FILE--
<?php
class autoloader
{
static function autoload($classname)
{
print "autoloading...\n";
eval('
class ClassToLoad
{
static function func ()
{
print "OK!\n";
}
}
');
}
}
spl_autoload_register(["autoloader", "autoload"]);
function start()
{
ClassToLoad::func();
}
start();
?>
--EXPECT--
autoloading...
OK!
|
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 07:00:01 2025 UTC |