php:strtotime如何获得去年七月? (或其他特定月份)

时间:2016-02-10 12:11:53

标签: php date strtotime

如果现在是2016-02-10 我需要返回2015-07-01(或2015-07-10)

def sayHello = "Hello" 

1 个答案:

答案 0 :(得分:2)

如果你今年七月过去会怎样?它是否需要在2016年7月返回,或者它是否始终在前一年?

如果是这样,你可以去年7月使用':

<?php
$returnValue = strtotime('july last year');

基于今年七月需要回归:

<?php
$returnValue = strtotime('july '. (date("n") >= 7 ? 'this' : 'last' ) .' year');