Skip to content

Instantly share code, notes, and snippets.

@morgante
Created August 12, 2012 17:32
Show Gist options
  • Save morgante/3333231 to your computer and use it in GitHub Desktop.
Save morgante/3333231 to your computer and use it in GitHub Desktop.
class A
{
}
class B extends A
{
}
class C extends A
{
}
class D
{
}
$b = new B;
$c = new C;
$d = new D;
if( $b is_extension_of A)
{
echo 'yay!';
else
{
echo 'no';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment