如何在PHP 中對時間字串添加和減去30 分鐘
為了清楚起見,您的目標是操作格式化的時間值加減30 分鐘為「H:i」。讓我們深入研究一下這個過程。
定義函數
<code class="php">$time = '10:00'; // Assuming 'H:i' format // Calculate start and end times $startTime = date("H:i", strtotime('-30 minutes', strtotime($time))); $endTime = date("H:i", strtotime('+30 minutes', strtotime($time)));</code>
解釋:
對結束時間執行類似的過程,但偏移量為 30 分鐘。
結果:
$startTime = '09:30' $endTime = '10:30'
以上是如何在 PHP 中為時間字串添加或減去 30 分鐘?的詳細內容。更多資訊請關注PHP中文網其他相關文章!