php-src/tests/strings/offsets_chaining_2.phpt

13 lines
197 B
Plaintext
Raw Normal View History

2011-11-26 18:41:45 +00:00
--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"