mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
10 lines
150 B
PHP
10 lines
150 B
PHP
--TEST--
|
|
testing the behavior of string offset chaining
|
|
--FILE--
|
|
<?php
|
|
$string = "foobar";
|
|
var_dump($string[0][0][0][0]);
|
|
?>
|
|
--EXPECT--
|
|
string(1) "f"
|