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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。