Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: PHPを使用して2つの日付の差を計算する方法は?
この形式で2回あります:date("Y-m-d H:i:s")。これらの2つの時間の差をどのように計算できますか?
date("Y-m-d H:i:s")
DateTimeクラスとdiffメソッドを使用します。
これを試して:
<?php $datetime1 = date_create($start); $datetime2 = date_create($end); $interval = date_diff($datetime1, $datetime2); return $interval->format('%a'); //returns the number of days ?>