downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ReflectionClass::isInstantiable> <ReflectionClass::isFinal
Last updated: Fri, 30 Oct 2009

view this page in

ReflectionClass::isInstance

(PHP 5)

ReflectionClass::isInstanceChecks class for instance

Beschreibung

public bool ReflectionClass::isInstance ( string $object )

Checks if a class is an instance of an object.

Parameter-Liste

object

The object being compared to.

Rückgabewerte

Gibt bei Erfolg TRUE zurück, im Fehlerfall FALSE.

Beispiele

Beispiel #1 ReflectionClass::isInstance related examples

<?php
// Example usage
$class = new ReflectionClass('Foo');

if (
$class->isInstance($arg)) {
    echo 
"Yes";
}

// Equivalent to
if ($arg instanceof Foo) {
    echo 
"Yes";
}

// Equivalent to
if (is_a($arg'Foo')) {
    echo 
"Yes";
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Yes
Yes
Yes

Siehe auch



add a note add a note User Contributed Notes
ReflectionClass::isInstance
There are no user contributed notes for this page.

ReflectionClass::isInstantiable> <ReflectionClass::isFinal
Last updated: Fri, 30 Oct 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites