微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Php如何从一年的日子到今天,反之亦然

一年中的第n天如何进入PHP,如下所示:
getdatefromday(275,2012)

输出一个日期(如果一个对象更好).

而我也想做相反的事情,像getdayoftheyear(“2012年8月21日”)

这是很容易的.您应该读取DateTime对象的createFromFormat静态方法 here,日期函数 here和strtotime函数 here.
// 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'));

原文地址:https://www.jb51.cc/php/130868.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐