php强大的时间转换函数strtotime

使用strtotime可以将各种格式的时间字符串转换为时间戳

转换常规时间格式:

echo date('Y-m-d H:i:s', strtotime('2016-01-30 18:00')).PHP_EOL;

echo date('Y-m-d H:i:s', strtotime('20160130180001')).PHP_EOL;

转换自然时间描述:

  1. //昨天
  2. echo date('Y-m-d H:i:s', strtotime('yesterday')).PHP_EOL;
  3. //上周
  4. echo date('Y-m-d H:i:s', strtotime('last week')).PHP_EOL;
  5. //本周开始时间
  6. echo date('Y-m-d H:i:s', strtotime('this week midnight')).PHP_EOL;
  7. //本月开始时间
  8. echo date('Y-m-d H:i:s', strtotime('first day of this month midnight')).PHP_EOL;
  9. //计算相对时间
  10. echo date('Y-m-d H:i:s', strtotime('+1 month')).PHP_EOL;