php 如何通过年、周和日获得一个日期
阿神
阿神 2017-04-11 09:20:21
0
4
581

php 如何通过周和日获得一个日期
例如:传入2017,3,4表示2017年第三周第4天得到2017-1-19的时间对象

阿神
阿神

闭关修行中......

reply all(2)
PHP中文网用户-2517107

Given a year, month and day, output the day of the year that the date is

伊谢尔伦

下面是个例子

$date = new DateTime();

$date->setISODate(2017, 3, 4);// 第三周的第四天
echo $date->format('Y-m-d') . "\n";
  • reply Given a year, month and day, output the day of the year that the date is How to solve this problem
    PHP中文网用户-2517107 author 2023-11-15 00:16:07
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template