Skip to content

Instantly share code, notes, and snippets.

@blar
Created June 4, 2011 22:23
Show Gist options
  • Save blar/1008425 to your computer and use it in GitHub Desktop.
Save blar/1008425 to your computer and use it in GitHub Desktop.
<?php
switch(array_filter(array(gettype($foo), is_object($foo) ? get_class($foo) : NULL))) {
case array('integer'):
var_dump('integer');
break;
case array('object', 'foo'):
var_dump('foo');
break;
case array('object', 'bar'):
var_dump('bar');
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment