在 PHP 中啟動和停止一個定時器

Minahil Noor 2021年2月25日 2020年12月31日
在 PHP 中啟動和停止一個定時器

本文將介紹在 PHP 中啟動和停止定時器的方法。

在 PHP 中使用 microtime() 函式來啟動和停止定時器

我們可以使用 microtime() 函式來啟動和停止 PHP 中的定時器。microtime() 函式在呼叫時以微秒為單位記錄時間。我們將計算停止時間和啟動定時器的時間差,從而得到執行時間。使用該函式的正確語法如下。

microtime($getAsFloat);

microtime() 函式只有一個引數。其引數的詳細情況如下。

變數 說明
$getAsFloat 布林型。如果設定為 True,則函式以字串的形式返回時間,而不是以浮點數形式返回。

該函式以微秒為單位返回時間。下面的程式顯示了我們在 PHP 中使用 microtime() 函式來啟動和停止計時器的方法。

<?php
$time_pre = microtime(true);
echo("This line will be executed.\n");
$time_post = microtime(true);
$exec_time = $time_post - $time_pre;
echo("The execution time is:\n");
echo($exec_time);
?>

輸出:

This line will be executed.
The execution time is:
2.6941299438477E-5

相關文章 - PHP Timer