标签: php date timestamp
例如,如果我有年份= 2014年和周#= 22,我如何获得YYYY-mm-dd日期呢?
答案 0 :(得分:2)
使用strtotime(),
$year = 2014; $week = 9; $date = strtotime($year."W".substr("0".$week, -2)); // e.g. strtotime("2014W09") echo date("Y-m-d",$date);
输出:
2014-02-24