zeev            Tue Jul 22 09:54:46 2003 EDT

  Added files:                 
    /php-src/tests/lang bug24436.phpt 
  Log:
  Add test
  
  

Index: php-src/tests/lang/bug24436.phpt
+++ php-src/tests/lang/bug24436.phpt
--TEST--
Bug #24436 (isset() and empty() produce errors with non-existent variables in objects)
--FILE--
<?php
class test {
        function __construct() {
                if (empty($this->test[0][0])) { print "test1";}
                if (!isset($this->test[0][0])) { print "test2";}
        }
}

$test1 = new test();
?>
--EXPECT--
test1test2



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to