ReflectionClass
PHP Manual

ReflectionClass::isInstance

(PHP 5)

ReflectionClass::isInstanceChecks class for instance

说明

public bool ReflectionClass::isInstance ( object $object )

Checks if an object is an instance of a class.

参数

object

The object being compared to.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE.

范例

Example #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";
}
?>

以上例程的输出类似于:

Yes
Yes
Yes

参见


ReflectionClass
PHP Manual