summaryrefslogtreecommitdiff
path: root/tests/strings/offsets_chaining_1.phpt
blob: eecdfb963769ab94eae0076c18520415eb19bd0f (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($string[0][0][0][0]);
?>
--EXPECTF--
string(1) "f"