php-src/Zend/tests/016.phpt

13 lines
158 B
Plaintext
Raw Normal View History

2006-07-06 16:14:56 +00:00
--TEST--
isset() with object properties when operating on non-object
--FILE--
<?php
$foo = NULL;
isset($foo->bar->bar);
echo "Done\n";
?>
--EXPECT--
Done