mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
13 lines
201 B
PHP
13 lines
201 B
PHP
--TEST--
|
|
testing the behavior of string offset chaining
|
|
--INI--
|
|
error_reporting=E_ALL | E_DEPRECATED
|
|
--FILE--
|
|
<?php
|
|
$string = "foobar";
|
|
var_dump(isset($string{0}{0}[0][0]));
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|
|
|