Skip to content

Instantly share code, notes, and snippets.

@ManInTheBox
Created July 1, 2014 09:28
Show Gist options
  • Save ManInTheBox/3f2bf19fa00844e8c468 to your computer and use it in GitHub Desktop.
Save ManInTheBox/3f2bf19fa00844e8c468 to your computer and use it in GitHub Desktop.
PHP's instanceof operator.
$ php -r 'var_dump('test' instanceof \Exception);'
bool(false)
$ php -r 'var_dump(null instanceof \Exception);'
Fatal error: instanceof expects an object instance, constant given in Command line code on line 1
$ php -r 'var_dump(1234 instanceof \Exception);'
Fatal error: instanceof expects an object instance, constant given in Command line code on line 1
$ php -r 'var_dump(array() instanceof \Exception);'
bool(false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment