php计算2023年02月20日到2024年3月15日中间多少天
首先,将2023年02月20日和2024年3月15日转换为时间戳格式,然后计算它们之间的差异,最后将差异转换为天数即可。
以下是用PHP实现的代码:
$start_date = strtotime('2023-02-20');
$end_date = strtotime('2024-03-15');
$days_diff = ($end_date - $start_date) / (60 * 60 * 24);
echo "2023年02月20日到2024年03月15日中间共有{$days_diff}天。";
输出结果为:
2023年02月20日到2024年03月15日中间共有389天。
原文地址: https://www.cveoy.top/t/topic/hb93 著作权归作者所有。请勿转载和采集!