php-src/Zend/tests/call_static_004.phpt

22 lines
268 B
Plaintext
Raw Normal View History

2008-06-03 15:30:04 +00:00
--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--
2008-06-03 15:34:47 +00:00
string(3) "AaA"
2008-06-03 15:30:04 +00:00
Fatal error: Function name must be a string in %s on line %d