--TEST-- Bug #24436: isset()/empty() produce errors with non-existent variables in classes --SKIPIF-- --INI-- error_reporting=2047 --FILE-- test[0][0])) { print "test1\n";} if (!isset($this->test[0][0])) { print "test2\n";} if (empty($this->test)) { print "test1\n";} if (!isset($this->test)) { print "test2\n";} } } $test1 = new test(); ?> --EXPECT-- Notice: Undefined property: test::$test in /home/derick/bug24436.php on line 11test1 Notice: Undefined property: test::$test in /home/derick/bug24436.php on line 12test2 test1 test2