PHP:時間變數求和
在PHP 中,決定兩個不同時間變數的組合持續時間可能是一項令人困惑的任務。不過,這可以透過簡單的解決方案來完成。
解:
要計算PHP 中時間變數的總和,您可以執行下列步驟:
<code class="php">$time1 = '15:20:00'; // First time variable $time2 = '00:30:00'; // Second time variable // Convert time variables to timestamps using strtotime() $timestamp1 = strtotime($time1); $timestamp2 = strtotime($time2); // Calculate the sum of timestamps and subtract common seconds $timestampSum = $timestamp1 + $timestamp2 - strtotime('00:00:00'); // Convert the sum back to time format using date() $time = date('H:i:s', $timestampSum); echo $time; // Output: 15:50:00</code>
在此解決方案中,我們使用strtotime() 將時間變數轉換為時間戳記。然後,我們計算時間戳的總和。但是,由於時間戳記包括小時和秒,因此我們使用 strtotime('00:00:00') 減去兩個時間變數共享的秒數(即 12:00 AM)。最後,我們使用 date() 將總和轉換回時間格式。
以上是如何在 PHP 中計算兩個時間變數的總和?的詳細內容。更多資訊請關注PHP中文網其他相關文章!