Last active
February 1, 2019 22:33
-
-
Save rodrigosetti/73b9945328bd71ca5380 to your computer and use it in GitHub Desktop.
PHP pearls
This file contains 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 | |
$x = NULL; | |
$x['foo'] = 'bar'; | |
print_r($x); | |
// Array | |
// ( | |
// [foo] => bar | |
// ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment