如果我同时拥有PHP中的年份和周#(ISO-8601周编号),我该如何获得日期?

时间:2014-08-14 17:06:07

标签: php date timestamp

例如,如果我有年份= 2014年和周#= 22,我如何获得YYYY-mm-dd日期呢?

1 个答案:

答案 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