php 获取最近一周,一个月,一年

2021-04-21 01:27

阅读:686

标签:date   echo   result   ==   标准   one   i++   php   一周   

//PRC是中国的意思,这段代码是把默认时区设置成了中国标准时间。
date_default_timezone_set(‘PRC‘);
/**
* 获取最近一周,一个月,一年
* */
function getLatelyTime($type = ‘‘){
$now = time();
$result = [];
if($type == ‘week‘){
//最近一周
for($i=0;$i $result[] = date(‘Y-m-d‘,strtotime(‘-‘.$i.‘ day‘, $now));
}
}elseif($type == ‘month‘){
//最近一个月
for($i=0;$i $result[] = date(‘Y-m-d‘,strtotime(‘-‘.$i.‘ day‘, $now));
}
}elseif($type == ‘year‘){
//最近一年
for($i=0;$i $result[] = date(‘Y-m‘,strtotime(‘-‘.$i.‘ month‘, $now));
}
}
return $result;
}


echo ‘

‘;
print_r(getLatelyTime(‘year‘));

php 获取最近一周,一个月,一年

标签:date   echo   result   ==   标准   one   i++   php   一周   

原文地址:https://www.cnblogs.com/apolloren/p/12253014.html


评论


亲,登录后才可以留言!