summaryrefslogtreecommitdiff
path: root/tests/strings/offsets_chaining_3.phpt
blob: 23b8e701791e74222d76fe14f4af2eeed94f92b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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)