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

Getting the Date and numeric weekday in PHP

我正在 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。

有人能帮帮我吗?

你几乎是对的,但不完全是。为什么要在 $number2 上使用 strtotime?将其更改为 $number2 = date('N', $tomorrow); 即可。

您的代码几乎没有错误,这是有效的代码:

$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', $tomorrow);
echo "Tomorrow: " . date('Y-m-d', $tomorrow) . " weekday: " . $number2 . "<br>";

DateTime 是处理 PHP 中日期的面向对象方法。我发现它的工作更加流畅。除此之外,它看起来好多了。

// Create a new instance
$now = new DateTime();
echo $now->format('N');

// Next day
$now->modify('+1 day');
echo $now->format('N');

资源

使用 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