[PHP]diff()で日数の差分を計算するサンプル
書式
public DateTime::diff ( DateTimeInterface $targetObject [, bool $absolute = FALSE ] ) : DateInterval
%R 正の値の場合(+)
%a 負の値の場合(-)
使用例
<?php $cftA = new DateTime('2021-03-15'); $cftB = new DateTime('2021-04-25'); $resA = $cftA->diff($cftB); print $resA->format('%R%a'); $resB = $cftB->diff($cftA); print $resB->format('%R%a'); ?>