为什么会发生这种情况(可能是原因Carbon
扩展了DateTime
和此http://php.net/manual/manual/manual/es/datetime.format.format.php#114366(和如何获得正确的更改时区时Carbon
实例的一周?
use CarbonCarbon;
$wet = Carbon::parse( '2017-01-02 00:47:21', 'WET' );
$cet = Carbon::parse( '2017-01-02 00:47:21', 'CET' );
$new = $cet->copy()->tz( 'WET' );
print_r( [
'cet->format(ATOM)' => $cet->format( Carbon::ATOM ), //prints: 2017-01-02T00:47:21+01:00
'cet->format(Y W)' => $cet->format( 'Y W' ), //prints: 2017 01
'wet->format(ATOM)' => $wet->format( Carbon::ATOM ), //prints: 2017-01-02T00:47:21+00:00
'wet->format(Y W)' => $wet->format( 'Y W' ), //prints: 2017 01
'new->format(ATOM)' => $new->format( Carbon::ATOM ), //prints: 2017-01-01T23:47:21+00:00
'new->format(Y W)' => $new->format( 'Y W' ), //prints: 2017 52
] );
另外一个简单的情况:
print_r( [
Carbon::create( 2017, 1, 1, 0, 0, 1 )->format( 'Y W' ), //prints: 2017 52
Carbon::create( 2016, 12, 31, 23, 59, 59 )->format( 'Y W' ), //prints: 2016 52
] );
当一天之前的第一周之前(例如:2017年1月1日(它返回52,但不会改变实际年份(2017年返回2017年(,所以我将实例强迫上一年的最后一秒钟获得正确的周
if (50 < $new->weekOfYear && 2 > $new->month)
{
$new->year( $new->year - 1 )->endOfYear();
}
echo $new->format( 'Y W' ); //prints: 2016 52