Function list of php file

前端 未结 12 1292
南方客
南方客 2020-11-28 14:40

How to get list of functions that are declared in a php file

12条回答
  •  再見小時候
    2020-11-28 15:17

    do include to the file and try this :

    $functions = get_defined_functions();
    print_r($functions['user']);
    

提交回复
热议问题