mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
12 lines
210 B
Plaintext
12 lines
210 B
Plaintext
|
--TEST--
|
||
|
errmsg: __autoload() must take exactly 1 argument
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
function __autoload($a, $b) {}
|
||
|
|
||
|
echo "Done\n";
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: __autoload() must take exactly 1 argument in %s on line %d
|