1. 변수 함수 이름, 문자열 연결 함수 이름을 사용할 수 있습니다.
function aa($str) {
echo $str;}$function = "aa";$function('Hello' );// ORcall_user_func($function, $param);
2. 모든 함수를 나열하고 함수가 존재하는지 확인
get_definition_functions()function_exist()
3. PUT 요청을 수락하려면 PHP REST가 필요합니다.
parse_str(file_get_contents('php://input'), $put_vars);
4. 문자열의 시간
echo date('Y-m-d', strtotime('-1month ago'));
5. DEBUG 호출 역추적 보기
$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()