gpt4 book ai didi

php - 在 PHP 中获取日期和数字工作日

转载 作者:可可西里 更新时间:2023-11-01 00:29:41 25 4
gpt4 key购买 nike

我正在用 PHP 开发一个应用程序,我需要使用日期和工作日的数字表示。

我试过以下方法:

$today = date("Y-m-d");
$number = date('N', strtotime($today));
echo "Today: " . $today . " weekday: " . $number . "<br>";
$today = strtotime($today);
$tomorrow = strtotime($today);
$tomorrow = strtotime("+1 day", $today);
$number2 = date('N', strtotime($tomorrow));
echo "Tomorrow: " . date('Y-m-d', $tomorrow) . " weekday: " . $number2 . "<br>";

输出

Today: 2016-11-11 weekday: 5
Tomorrow: 2016-11-12 weekday: 4

这是不对的,因为明天的工作日应该是 6 而不是 4。

有人可以帮帮我吗?

最佳答案

使用 DateTime 会提供一个简单的解决方案

<?php
$date = new DateTime();
echo 'Today: '.$date->format( 'Y-m-d' ) .' weekday '. $date->format( 'N' )."\n";
$date->modify( '+1 days' );
echo 'Tomorrow: '.$date->format( 'Y-m-d' ) .' weekday '. $date->format( 'N' )."\n";

输出

Today: 2016-11-11 weekday 5
Tomorrow: 2016-11-12 weekday 6

但是日期数字略有不同,N 代表工作日数字,如您所见,星期五(今天)显示为 5。星期一为 1,星期日为 7。

如果你看下面的例子,你应该得到相同的结果

echo date( 'N' );

输出

5

日期格式 - http://php.net/manual/en/function.date.php

关于php - 在 PHP 中获取日期和数字工作日,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40543900/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com