函式處理
- 簡介
- 安裝/配置
- 預定義常量
- 函式處理 函式
- call_user_func_array — 呼叫回撥函式,並把一個陣列參數作為回撥函式的參數
- call_user_func — 把第一個參數作為回撥函式呼叫
- create_function — Create an anonymous (lambda-style) function
- forward_static_call_array — Call a static method and pass the arguments as array
- forward_static_call — Call a static method
- func_get_arg — 返回參數列表的某一項
- func_get_args — 返回一個包含函式參數列表的陣列
- func_num_args — Returns the number of arguments passed to the function
- function_exists — 如果給定的函式已經被定義就返回 true
- get_defined_functions — 返回所有已定義函式的陣列
- register_shutdown_function — 註冊一個會在php中止時執行的函式
- register_tick_function — 註冊一個函式以便在每個 tick 上執行
- unregister_tick_function — De-register a function for execution on each tick