xref: /PHP-5.5/Zend/tests/isset_002.phpt (revision bcccfa6b)
1--TEST--
2Testing isset with several undefined variables as argument
3--FILE--
4<?php
5
6var_dump(isset($a, ${$b}, $$c, $$$$d, $e[$f->g]->d));
7
8?>
9--EXPECT--
10bool(false)
11