As many of you already know, PHP 5.4 alpha has been released. I have a question regarding the following.
Simplified string offset reading.
$str[1][0]is now a legal construct.
How exactly does $str[1][0] work?
|
As many of you already know, PHP 5.4 alpha has been released. I have a question regarding the following.
How exactly does |
||||
| show 6 more comments |
|
This is a side effect, and was mentioned in the proposal here: http://php.markmail.org/thread/yiujwve6zdw37tpv The feature is speed/optimization of string offsets.
|
||||
|
|
|
It just means that when reading a string offset PHP returns a string again, on which you again can access an offset. (And on that access yet another offset. It gets funny with Before PHP 5.4 you would get an "Cannot use string offset as an array" error. |
|||||||||||||||
|
|
This can actually create some interesting bugs when you upgrade code from php 5.3 to 5.4. In 5.3 this construct would return false:
In 5.4 this would return true. |
|||
|
|
$str[1][0]. It is the same as$str[1]. So there is nothing special about it.$str[1]returns a string with one character and[0]is accessing the character at position0. – Felix Kling Jul 5 '11 at 19:56[0]as many times as you would like. And that actually makes sense (even if it has no practical purpose) because the offset should return a one character string. (PHP has nochartype.) Edit: What @nikic said. – Matthew Jul 5 '11 at 20:09