使用PHP 檢索當前時間(以毫秒為單位)
在PHP 中,time() 函數傳回以秒為單位的當前時間。但是,對於需要更高精度的場景,可能需要取得當前時間(以毫秒為單位)。
解決方案:
解決方案涉及利用 microtime(true) 。此函數傳回以秒和微秒為單位測量的當前時間,其中微秒代表小數部分。將此值轉換為毫秒:
<code class="php">$microseconds = microtime(true); $timestamp = floor($microseconds * 1000); // Convert to milliseconds</code>
範例:
<code class="php">$timestamp = floor(microtime(true) * 1000); echo 'Timestamp in milliseconds: ' . $timestamp . '<br>';</code>
輸出:
Timestamp in milliseconds: 1631685547387
透過使用此方法,您可以與使用time() 相比,可以更準確地檢索當前時間(以毫秒為單位)。
以上是如何在 PHP 中檢索目前時間(以毫秒為單位)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!