再会,
我正在尝试创建一个具有以下内容的重复日期系统:
第 n 个月的第 n 天(每 3 个月的第 2 天)
$this_months_friday = strtotime('+3 days +4 months');
其输出将始终为当天 + 第 4 个月的 3 天。
如何让它显示第 n 个月的第 n 天?
因为我也试过
$this_months_friday = strtotime('every 3 days +4 months');
它没有返回任何结果。我应该在这个上坚持使用 strtotime 还是转到 php 的 DateTime 函数。尽管我仍然无法为这种日期序列制定适当的论据。
任何帮助将不胜感激。
谢谢你。