PHP 日期时间函数 microtime() PHP 日期函数 localtime() PHP 日期时间函数 mktime() PHP 日期时间函数 microtime() <?php $time_start = microtime(true); usleep(100); $time_end = microtime(true); $time = $time_end - $time_start; echo "Did nothing in $time seconds\n"; ?> PHP 日期函数 localtime() PHP 日期时间函数 mktime()