Hi Stas,
On 07/16/2010 11:47 AM, Stas Malyshev wrote:
Hi!
$str = "abs";
var_dumo($str[1][0]);
I think it's not a problem at all.
"b" makes sense because "abs"[1] -> "b" and "b"[0] -> "b".
Totally makes sense, but it'd be a bit strange that $str[1][0] works but
$str[1][0] = "a" does not.
$str[1][0] = "a"; doesn't have to modify $str.
var_dump($str[1][1]) will return empty string
$str[1][1] = "a"; can't modify $str at all.
So I think it is not a problem.
Thanks. Dmitry.
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php