TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
308 B
20 lines
308 B
--TEST--
|
|
ZE2 __call() signature check
|
|
--SKIPIF--
|
|
<?php die('skip'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class Test {
|
|
function __call() {
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
$test = new Test();
|
|
$test->test();
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Method Test::__call() must take exactly 2 arguments in %s__call_002.php on line %d
|
|
|