标签: php date
我希望根据天数,星期数和年数获得具体日期,
$days = "Monday"; $number_of_week = date('W'); // 1 to 42 total number of weeks in years $year = date('Y'); // 2017 getSpecificDate($days, $number_of_week, $year);
它会返回
2017年2月20日
如何获得?