php 获取最近一周,一个月,一年
2021-04-21 01:27
标签:date echo result == 标准 one i++ php 一周 //PRC是中国的意思,这段代码是把默认时区设置成了中国标准时间。 php 获取最近一周,一个月,一年 标签:date echo result == 标准 one i++ php 一周 原文地址:https://www.cnblogs.com/apolloren/p/12253014.html
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‘));
上一篇:ajax爬取今日头条街拍图片——data出现none的解决
下一篇:html(2)