1. 変数関数名、文字列連結関数名を使用できます
function aa($str) {
echo $str;}$function = "aa";$function('Hello');// ORcall_user_func($function) , $param);
2. すべての関数を一覧表示し、関数が存在するかどうかを確認します
get_define_functions()function_exist()
3. PUT リクエストを受け入れます。PHP REST が必要です
parse_str(file_get_contents('php :/) /input'), $put_vars);
4. string から時刻を解析します
echo date('Y-m-d', strtotime('-1 month ago'));
5. DEBUG View Call 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()