<?php
class A { }
class B { }
$thing = new A;
if ($thing instanceof A) {
echo 'A';
}
if ($thing instanceof B) {
echo 'B';
}
?>
的 PHP 代码段结束标记可以不要,有些情况下当使用输出缓冲和
include() 或者 require() 时省略掉会更好些。
include() 就不是这样,脚本会继续运行。同时也要确认设置了合适的include_path。
__CLASS__ :指的是当前类。
异常处理,根据需要扩展异常处理类exception
require()语句包含并运行指定文件;
您可能感兴趣的文章: