summaryrefslogtreecommitdiff
path: root/Zend/tests/bug53971.phpt
blob: a1e66cc51e4e816b4555235b6f0be4e85bccdeac (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Bug #53971 (isset() and empty() produce apparently spurious runtime error)
--FILE--
<?php
$s = "";
var_dump(isset($s[0][0]));
?>
--EXPECT--
bool(false)