php-src/Zend/tests/call_static_006.phpt

20 lines
279 B
Plaintext
Raw Normal View History

2008-06-03 23:36:59 +08:00
--TEST--
Testing __callStatic
--FILE--
<?php
class foo {
2020-02-04 05:52:20 +08:00
static function __callstatic($a, $b) {
var_dump($a);
}
2008-06-03 23:36:59 +08:00
}
foo::__construct();
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot call constructor in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d