如何在php中将日期转换为近期日期?
如果我进入星期一,如果今天是2014年8月22日星期五,它应该在周一转换为2014年8月25日?
答案 0 :(得分:2)
使用php函数strtotime
和密钥next week monday
来获取下一个日期
http://de2.php.net/manual/de/function.strtotime.php
$theDay = 'Monday'; // eg. Monday
$time = strtotime('next week ' . $theDay);
echo date('d.m.y', $time); // get next monday