mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
16 lines
367 B
PHP
16 lines
367 B
PHP
--TEST--
|
|
Ensure callback methods in unknown classes trigger autoload.
|
|
--FILE--
|
|
<?php
|
|
function __autoload($name)
|
|
{
|
|
echo "In autoload: ";
|
|
var_dump($name);
|
|
}
|
|
call_user_func("UndefC::test");
|
|
?>
|
|
--EXPECTF--
|
|
In autoload: string(6) "UndefC"
|
|
|
|
Warning: call_user_func() expects parameter 1 to be a valid callback, class 'UndefC' not found in %s on line %d
|