Skip to content

Instantly share code, notes, and snippets.

@rcsheets
Last active August 29, 2015 13:56
Show Gist options
  • Save rcsheets/9155595 to your computer and use it in GitHub Desktop.
Save rcsheets/9155595 to your computer and use it in GitHub Desktop.
function a($foo) {
// PHP Notice: Undefined variable: foo
return $foo;
}
function b($foo = NULL) {
return $foo;
}
// PHP Warning: Missing argument 1 for a()
a();
b();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment