php-src/Zend/tests/016.phpt

13 lines
157 B
Plaintext
Raw Normal View History

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