在 PHP 中,如何从 now() 获取到下一个星期日午夜的秒数?

我不想要相对于特定日期的解决方案,而只是针对下一个星期天。

最佳答案

$seconds = strtotime('next Sunday') - time();

关于php - 从 now() 到周日午夜的秒数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4692164/

10-14 13:58