mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 18:38:05 +01:00
9 lines
93 B
Plaintext
9 lines
93 B
Plaintext
|
Array spread
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
[$a, $b] = [...$c, ...$d];
|
||
|
-----
|
||
|
!!php7
|
||
|
[$a, $b] = [...$c, ...$d];
|