is_subclass_of() 函数检查对象是否将此类作为其父级之一。
用法
is_subclass_of(object, class, string)
参数
object− 测试对象
class− 类名称
string− 如果设置为false,则不允许将字符串类名作为对象。
返回
如果对象 “object” 属于 “class” 的子类,则 is_subclass_of() 函数返回 TRUE,否则返回 FALSE。
以下是一个例子 -
示例
<?php
// define a class
class wid_fact {
var $oink = 'moo';
}
// define a child class
class wid_fact_child extends wid_fact {
var $oink = 'oink';
}
// create a new object
$WF = new wid_fact();
$WFC = new wid_fact_child();
if (is_subclass_of($WFC, 'wid_fact')) {
echo "yes, \$WFC is a subclass of wid_fact \n";
} else {
echo "no, \$WFC is not a subclass of wid_fact \n";
}
if (is_subclass_of($WF, 'wid_fact')) {
echo "yes, \$WF is a subclass of wid_fact \n";
} else {
echo "no, \$WF is not a subclass of wid_fact \n";
}
?>
以下是输出 -
输出
yes, $WFC is a subclass of wid_fact no, $WF is not a subclass of wid_fact
相关用法
- PHP is_string()用法及代码示例
- PHP is_scalar()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP is_link( )用法及代码示例
- PHP is_link()用法及代码示例
- PHP is_long()用法及代码示例
- PHP is_iterable()用法及代码示例
- PHP is_float()用法及代码示例
- PHP is_object()用法及代码示例
- PHP is_callable()用法及代码示例
- PHP is_executable()用法及代码示例
- PHP is_dir( )用法及代码示例
- PHP is_dir()用法及代码示例
- PHP is_nan()用法及代码示例
- PHP is_readable( )用法及代码示例
- PHP is_uploaded_file()用法及代码示例
- PHP is_resource()用法及代码示例
- PHP is_finite()用法及代码示例
- PHP is_writeable()用法及代码示例
注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 is_subclass_of () function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。