| Current Path : /proc/self/cwd/vendor/nikic/php-parser/test/code/prettyPrinter/expr/ |
| Current File : //proc/self/cwd/vendor/nikic/php-parser/test/code/prettyPrinter/expr/arrayDestructuring.test |
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;