mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
31 lines
462 B
PHP
31 lines
462 B
PHP
--TEST--
|
|
Trying to access undeclared static property
|
|
--FILE--
|
|
<?php
|
|
|
|
class bar {
|
|
public function __set($a, $b) {
|
|
print "hello\n";
|
|
}
|
|
}
|
|
|
|
class foo extends bar {
|
|
public function __construct() {
|
|
static::$f = 1;
|
|
}
|
|
public function __set($a, $b) {
|
|
print "foo\n";
|
|
}
|
|
}
|
|
|
|
|
|
new foo;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Access to undeclared static property: foo::$f in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): foo->__construct()
|
|
#1 {main}
|
|
thrown in %s on line %d
|