Skip to content

Instantly share code, notes, and snippets.

@carlescliment
Last active December 25, 2015 14:09
Show Gist options
  • Save carlescliment/6988839 to your computer and use it in GitHub Desktop.
Save carlescliment/6988839 to your computer and use it in GitHub Desktop.
null handling in php
<?php
/**
* PHP VERSION: PHP 5.5.4-1
*/
// Raises a parse error
null['unexisting'];
// Returns null
$null_value = null;
$null_value['unexisting'];
@carlescliment
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment