php获取今日、昨日、最近7天、最近30天等的时间戳方法

http://www.caizhichao.cn/738.html
$seven_day = date(“Y-m-d”,strtotime("-7 day"));
$thirty_day = date(“Y-m-d”,strtotime("-30 day"));
$ninety_day = date(“Y-m-d”,strtotime("-90 day"));
$date = date(“Y-m-d”,time());

你可能感兴趣的:(PHP,函数,问题参考)