Skip to content

Instantly share code, notes, and snippets.

@dzarezenko
Created November 3, 2009 23:59
Show Gist options
  • Save dzarezenko/225599 to your computer and use it in GitHub Desktop.
Save dzarezenko/225599 to your computer and use it in GitHub Desktop.
<?php
function isObject(&$object) {
if (isset($object) && is_object($object)) {
if (!empty($object)) {
return true;
}
return false;
}
return false;
}
function isInstanceOf(&$object, $className) {
return (isObject($object) && ($object instanceof $className));
}
// )))
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment