Created
February 9, 2020 13:50
-
-
Save MehmetGoekce/fbca97f8c43b116dc3fb102d03e0ee31 to your computer and use it in GitHub Desktop.
not allowed to unpack arrays that are passed for reference
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $arr1 = ['red', 'green', 'blue']; | |
| $arr2 = [...&$arr1]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment