mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
22 lines
268 B
PHP
22 lines
268 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: Function name must be a string in %s on line %d
|