Could you provide a detailed explanation to why this code:
$arr = array(1, 2, 3);
list($result[], $result[], $result[]) = $arr;
print_r($result);
results in:
Array ( [0] => 3 [1] => 2 [2] => 1 )
?
|
See the PHP docs for
If you want to know why it does so, then the reason is probably, that a right-to-left assignment is easier to implement using a LALR(1) parser, where you normally use only left hand side recursion for performance reasons:
|
||||
|
|
|
Because
So the actual answer is: that's how list works in PHP |
|||
|
|
|
You have everything explain on this LINK... It says:
Hope it helps! |
|||
|
|
list()works, cf. the php docs (php.net/list) – knittl Apr 19 '11 at 7:53