date_default_timezone_set('PRc');
//时间函数
//strtotime(字符串)
//函数用于将时间字符串转为时间戳
$time = strtotime('-3 day');
echo $time;
echo date('y/m/d/h/i/s/',$time);
echo '<hr />';
echo date('y-m-d h:i:s',strtotime('last monday'));
echo '<hr />';
echo date('y-m-d h:i:s',strtotime('+3 day'));
echo '<hr />';
echo date('y-m-d h:i:s',strtotime('-1 week'));
echo '<hr />';
echo date('y-m-d h:i:s',strtotime('-3 years'));
echo '<hr />';
echo date('y-m-d h:i:s',strtotime('next friday'));