Skip to content

Instantly share code, notes, and snippets.

@rodrigosetti
Last active February 1, 2019 22:33
Show Gist options
  • Save rodrigosetti/73b9945328bd71ca5380 to your computer and use it in GitHub Desktop.
Save rodrigosetti/73b9945328bd71ca5380 to your computer and use it in GitHub Desktop.
PHP pearls
<?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