php-src/Zend/tests/call_static_005.phpt

18 lines
243 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);
}
}
$a = 'foo::';
$a();
?>
--EXPECTF--
Fatal error: Call to undefined function foo::() in %s on line %d