2019-03-20发表2020-12-24更新PHP几秒读完 (大约105个字)0次访问 php 中instanceof的使用作用: (1)判断一个对象是否是某个类的实例, (2)判断一个对象是否实现了某个接口。 第一种用法: 123456<?php $obj = new A(); if ($obj instanceof A) { echo 'A'; } ?> 第二种用法: 12345678910111213141516<?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 php 中instanceof的使用https://sunct.github.io/posts/9270c4ff.html作者sunct发布于2019-03-20更新于2020-12-24许可协议 PHP