下个月15日仅在PHP

时间:2016-08-04 13:41:41

标签: php date strtotime relative-date

我需要使用单个strtotime调用仅使用一个文字字符串参数来检索下个月的第15天。

我尝试了以下参数值:

  • strtotime("下个月15日")
  • strtotime("下个月的第一天+ 14天")
  • strtotime("下个月15日")

但没有什么能给我预期的结果。 这可行吗?

UPD。调用strtotime()内其他功能的解决方案并不是我所寻求的。问题是我需要字符串函数作为其他计算的结果而不是组合,而是字符串文字。这是我的问题与乍一看可能看起来相似的其他问题不同的主要方式。

2 个答案:

答案 0 :(得分:0)

<强>被修改

<?php echo strtotime(date('Y', strtotime('+1 month')).'-'.date('m', strtotime('+1 month')).'-15'); ?>

答案 1 :(得分:-1)

试试此代码

{{1}}