本質上很少會用到,但偶爾僅用 PHP 做字串加解碼的動作,或是縮圖等等,這時就會參考。
實作上,跟其他語言差不多,大至上是取時間出來。可用到的函數有兩個 PHP - time , PHP - microtime 。
在 PHP - microtime 中有範例,我覺得挺夠用的:
<?php
$time_start = microtime(true);
// Sleep for a while
usleep(100);
$time_end = microtime(true);
$time = $time_end - $time_start;
echo "Did nothing in $time seconds\n";
?>
沒有留言:
張貼留言