PHPには次のものがあります:
$diff = abs(strtotime(date('m/d/Y h:i:s')) - strtotime($latest));
$years = floor($diff / (365*60*60*24));
$months = floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
echo floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24));
差を秒単位で取得するにはどうすればよいですか? 私は次のことを試しました:
$diff = abs(strtotime(date('m/d/Y h:i:s')) - strtotime($latest));