1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00
Files
archived-php-src/Zend/tests/call_static_004.phpt
2015-05-17 17:31:43 -05:00

25 lines
325 B
PHP

--TEST--
Invalid method name in dynamic static call
--FILE--
<?php
class foo {
static function __callstatic($a, $b) {
var_dump($a);
}
}
foo::AaA();
$a = 1;
foo::$a();
?>
--EXPECTF--
string(3) "AaA"
Fatal error: Uncaught Error: Function name must be a string in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d