mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
eb0ba9068d
- New tests
35 lines
506 B
PHP
35 lines
506 B
PHP
--TEST--
|
|
Trying to create an object from dereferencing uninitialized variable
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
class foo {
|
|
public $x;
|
|
static public $y;
|
|
|
|
public function a() {
|
|
return $this->x;
|
|
}
|
|
|
|
static public function b() {
|
|
return self::$y;
|
|
}
|
|
}
|
|
|
|
$foo = new foo;
|
|
$h = $foo->a()[0]->a;
|
|
var_dump($h);
|
|
|
|
$h = foo::b()[1]->b;
|
|
var_dump($h);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Trying to get property of non-object in %s on line %d
|
|
NULL
|
|
|
|
Notice: Trying to get property of non-object in %s on line %d
|
|
NULL
|