判斷php中的方法是否存在的方法:可以使用method_exists函數來判斷,如【method_exists($directory,'read')】。如果要判斷類別中的屬性是否已定義,可以使用property_exists函數判斷。
相關函數:
(學習影片推薦:java課程)
bool method_exists ( mixed $object , string $method_name ) 檢查類別的方法是否存在
程式碼範例:
$directory=new Directory; if(!method_exists($directory,'read')) { echo '未定义read方法!'; }
如果要判斷類別裡面的某個屬性是否已經定義,在使用以下方法:
bool property_exists ( mixed $class , string $property )檢查類的屬性是否存在
代碼示例:
$directory=new Directory; if(!property_exists($directory,'li')) { echo '未定义li属性!'; }
相關推薦:php培訓
以上是判斷php中的方法是否存在該怎麼做的詳細內容。更多資訊請關注PHP中文網其他相關文章!