Skip to content

Instantly share code, notes, and snippets.

@davidstrauss
Last active May 3, 2019 19:08
Show Gist options
  • Save davidstrauss/d1fe9b955f4262808099e5ad8026e741 to your computer and use it in GitHub Desktop.
Save davidstrauss/d1fe9b955f4262808099e5ad8026e741 to your computer and use it in GitHub Desktop.
<?php
function hello(array $x = null) { // Removing the "= null" will cause the call below to have a fatal error.
echo "hello\n";
}
hello(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment