php 中instanceof的使用

作用:

(1)判断一个对象是否是某个类的实例,

(2)判断一个对象是否实现了某个接口。

第一种用法:

1
2
3
4
5
6
<?php   
$obj = new A();
if ($obj instanceof A) {
echo 'A';
}
?>

第二种用法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php   
interface ExampleInterface {
public function interfaceMethod();
}
class ExampleClass implements ExampleInterface {
public function interfaceMethod(){
return 'Hello World!';
}
}
$exampleInstance = new ExampleClass();
if($exampleInstance instanceof ExampleInterface){
echo 'Yes, it is';
}else{
echo 'No, it is not';
}
?>

输出结果:Yes, it is

作者

sunct

发布于

2019-03-20

更新于

2020-12-24

许可协议


评论