この記事では、PHP で 2 つの時刻の差を単純に計算する方法を主に紹介し、PHP での日付と時刻の変換と数学的演算に関連する操作スキルを具体的な例の形で分析します。それが皆さんのお役に立てれば幸いです。
<?php //PHP计算两个时间差的方法 $startdate="2010-12-11 11:40:00"; $enddate="2012-12-12 11:45:09"; $date=floor((strtotime($enddate)-strtotime($startdate))/86400); $hour=floor((strtotime($enddate)-strtotime($startdate))/86400/3600); $minute=floor((strtotime($enddate)-strtotime($startdate))/86400/60); $second=floor((strtotime($enddate)-strtotime($startdate))/86400/60); echo $date."天<br>"; echo $hour."小时<br>"; echo $minute."分钟<br>"; echo $second."秒<br>";
実行結果:
732天 0小时 12分钟 12秒
関連する推奨事項:
どうですかphpの実装時間の比較と時間差の計算方法を共有します
以上がPHPで2つの時間の差を計算する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。