class_exists — 檢查類是否已定義,如果類存在返回true
get_class — 返回對象的類名
get_class_methods — 返回由類的方法名組成的數組
get_declared_classes — 返回由已定義類的名字所組成的數組
is_callable — 檢測參數是否為合法的可調用結構
method_exists — 檢查類的方法是否存在
bool method_exists ( mixed$object
, string $method_name
)
檢查類的方法是否存在於指定的 object
中。
get_class_vars — 返回由類的默認屬性組成的數組(只顯示public屬性)
array get_class_vars ( string$class_name
)
返回由類的默認公有屬性組成的關聯數組,此數組的元素以 varname => value
的形式存在。
get_parent_class — 返回對象或類的父類名
is_subclass_of — 如果此對象是該類的子類,則返回 TRUE
call_user_func — Call the callback given by the first parameter
call_user_func_array — Call a callback with an array of parameters
flectionClass 類報告了一個類的有關信息。
Reflection::export — Exports