This commit is contained in:
Antony Dovgal 2006-07-06 16:17:12 +00:00
parent aee52fa3ea
commit de23c325e9

12
Zend/tests/016.phpt Normal file
View File

@ -0,0 +1,12 @@
--TEST--
isset() with object properties when operating on non-object
--FILE--
<?php
$foo = NULL;
isset($foo->bar->bar);
echo "Done\n";
?>
--EXPECT--
Done