您好,登錄后才能下訂單哦!
一、時間:
1、xdebug_time_index():這xdebug自帶的執行時間函數;
2、自己拓展的方法及調試:
function microtime_float(){
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
$time_start = microtime_float();
usleep(100);
$time_end = microtime_float();
$time = $time_end - $time_start;
echo "Did nothing in $time seconds\n";
二、內存:
1、memory_get_usage():這個函數是php自帶的,只有當PHP編譯時使用了-enable-memory-limit參數時才有效;
2、xdebug_memory_usage():xdebug提供的查看內存情況;
3、xdebug_peak_memory_usage():xdebug提供查看內存峰值的函數;
三、CPU:
1、getrusage():linux下查看內存,不支持windows;
2、system('systeminfo')):從中獲取,具體的以后有時間分析。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。