Skip to content

Instantly share code, notes, and snippets.

@KalleZ
Created August 29, 2017 13:54
Show Gist options
  • Select an option

  • Save KalleZ/d9481095fdace074b640870e0a2f6b9d to your computer and use it in GitHub Desktop.

Select an option

Save KalleZ/d9481095fdace074b640870e0a2f6b9d to your computer and use it in GitHub Desktop.
<?php
foreach([false, 0.1, 'hello', [], new stdClass, new SoapFault('a', 'b')] as $value)
{
var_dump(is_soap_fault($value) === ($value instanceof SoapFault));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment