astrXbian/www/multitube/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arrayDestructuring.test
2021-03-20 01:33:02 +01:00

14 lines
246 B
Plaintext

Array destructuring
-----
<?php
[$a, $b] = [$c, $d];
[, $a, , , $b, ,] = $foo;
[, [[$a]], $b] = $bar;
['a' => $b, 'b' => $a] = $baz;
-----
!!php7
[$a, $b] = [$c, $d];
[, $a, , , $b, ] = $foo;
[, [[$a]], $b] = $bar;
['a' => $b, 'b' => $a] = $baz;