Home > タイムアゴ


PHPでのカスタムタイムアゴ機能の実装方法

以下に、いくつかの方法とコード例を示します。タイムスタンプの差を計算: この方法では、2つの日時のタイムスタンプの差を計算し、適切な時間単位で表示します。function customTimeAgo($pastDatetime) { $currentDatetime = time(); $timeDiff = $currentDatetime - strtotime($pastDatetime); $years = floor($timeDiff / (365 * 24 * 60 * 60)); $months = floor($timeDiff / (30 * 24 >>More