2003-07-02 03:12:56 +08:00
|
|
|
--TEST--
|
2003-07-25 01:07:40 +08:00
|
|
|
Bug #24436 (isset()/empty() produce errors with non-existent variables in classes)
|
2003-07-02 03:12:56 +08:00
|
|
|
--SKIPIF--
|
|
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 is needed'); ?>
|
|
|
|
--INI--
|
|
|
|
error_reporting=2047
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
class test {
|
|
|
|
function __construct() {
|
|
|
|
if (empty($this->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--
|
2003-07-25 01:00:17 +08:00
|
|
|
test1
|
|
|
|
test2
|
2003-07-02 03:12:56 +08:00
|
|
|
test1
|
|
|
|
test2
|