1. 變數函式名,可以用字串拼接函式名稱
function aa($str) {
echo $str;}$function = "aa";$function('Hello');// ORcall_user_func($function , $param);
2. 列出所有函數,判斷某個函數是否存在
get_defined_functions()function_exist()
3. 接受PUT 請求,PHP RESTget 必備_str ://input'), $put_vars);
4. 從字串解析時間
echo date('Y-m-d', strtotime('-1 month ago'));
5. DEBUG 檢視呼叫backtrace
$backtrace = debug_backtrace();var_export($backtrace[0])die();
6. 互動式命令列,命令列執行PHP
php -a 和php -r 'echo “hello 」;'
更多請看php -h
7.記憶體使用偵測
memory_get_peak_usage()memory_get_usage()