我正在为我们的产品页面制作产品预计到达时间 (ETA),但我很难让这个想法发挥作用。
我的 PHP 脚本如下:
$now = new DateTime(date("y:m:j",time()));
$eta = new DateTime($row['ArrivalDate']);
$diff = $now->diff($eta);
那么这就是我要归档的内容 If $diff < 30 days then out “within “30 days”</p>
If $diff = or > 60days then output “2 months”
If $diff = or > 90 days then output “3 months”
If $diff > 365 days then output “over a year”
If $diff = 25 December then output “Date to be confirmed”
在 ETA 列中,我想将 ETA 显示为“2 个月”</p>
请帮忙,我不是 PHP 大师