summaryrefslogtreecommitdiff
path: root/Zend/tests/isset_002.phpt
blob: 8dd3acc733c408c57cd0e44b309b9bc102bed3ad (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Testing isset with several undefined variables as argument
--FILE--
<?php

var_dump(isset($a, ${$b}, $$c, $$$$d, $e[$f->g]->d));

?>
--EXPECT--
bool(false)