ReflectionClass::isInstance

ReflectionClass::isInstance

(PHP 5, PHP 7)

ReflectionClass::isInstanceChecks class for instance

Description

public bool ReflectionClass::isInstance ( object $object )

Checks if an object is an instance of a class.

Parameters

object

The object being compared to.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

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

The above example will output something similar to:

Yes
Yes
Yes

See Also

© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://secure.php.net/manual/en/reflectionclass.isinstance.php

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部