一年中的第n天如何进入PHP,如下所示:
getdatefromday(275,2012)
并输出一个日期(如果一个对象更好).
而我也想做相反的事情,像getdayoftheyear(“2012年8月21日”)
这是很容易的.您应该读取DateTime对象的createFromFormat静态方法
here,日期函数
here和strtotime函数
here.
原文链接:https://www.f2er.com/php/130868.html// This should get you a DateTime object from the date and year. function getDateFromDay($dayOfYear,$year) { $date = DateTime::createFromFormat('z Y',strval($dayOfYear) . ' ' . strval($year)); return $date; } // This should get you the day of the year and the year in a string. date('z Y',strtotime('21 oct 2012'));