php取得物件所有方法的方法:1、取得目前物件裡所有的方法,程式碼為【$methods = get_class_methods(get_class())】;2、取得指定物件裡的方法,程式碼為【 $methods = get_class_met】。
php取得物件所有方法的方法:
在做後台rbac權限管理時,不想手動新增權限,可以自動把目前類別裡的方法放到menu中。
取得目前物件裡所有的方法
public function getAllMethods() { $methods = get_class_methods(get_class()); var_dump($methods);exit; }
取得指定物件裡的方法
public function getAllMethods() { $methods = get_class_methods(get_class(new AdminController())); var_dump($methods);exit; }
相關學習推薦:php程式設計(視頻)
以上是php如何取得物件所有方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!