mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
20 lines
279 B
PHP
20 lines
279 B
PHP
--TEST--
|
|
Testing __callStatic
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
static function __callstatic($a, $b) {
|
|
var_dump($a);
|
|
}
|
|
}
|
|
|
|
foo::__construct();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot call constructor in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|