mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
12 lines
256 B
PHP
12 lines
256 B
PHP
--TEST--
|
|
Bug #62680 (Function isset() throws fatal error on set array if non-existent key depth >= 3)
|
|
--FILE--
|
|
<?php
|
|
$array = array("");
|
|
var_dump(isset($array[0]["a"]["b"]));
|
|
var_dump(isset($array[0]["a"]["b"]["c"]));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(false)
|