mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
12 lines
163 B
Plaintext
12 lines
163 B
Plaintext
|
--TEST--
|
||
|
Bug #53971 (isset() and empty() produce apparently spurious runtime error)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$s = "";
|
||
|
var_dump(isset($s[0][0]));
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
bool(false)
|
||
|
|
||
|
|