php-src/Zend/tests/016.phpt

13 lines
156 B
Plaintext
Raw Normal View History

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