2 つの日付間の時差を秒単位で計算する
2 つの日付間の時差を秒単位で求めるには、簡単な方法を使用できます。 。このアプローチには、strtotime 関数を使用して両方の日付を対応するタイムスタンプに変換することが含まれます。次の例を考えてみましょう。<code class="php">$firstDate = "2011-05-12 18:20:20"; $secondDate = "2011-05-13 18:20:20"; $firstTimestamp = strtotime($firstDate); // Convert the first date to a timestamp $secondTimestamp = strtotime($secondDate); // Convert the second date to a timestamp $timeDifference = $secondTimestamp - $firstTimestamp; // Calculate the difference in seconds</code>
<code class="php">$minutesDifference = $timeDifference / 60;</code>
以上が2 つの日付間の時差を秒単位で計算するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。