php / php/php-src

strtotime() has strange interpretation of decimal weeks

Đang mở
#21,027 1 bình luận 0 reaction 1 người được giao Xem trên GitHub

@derickr đang làm issue này rồi.

Từ ngày 24/1/2026.

Extension: date Feature Status: Requires RFC
Ngôn ngữ chính
C
Star
40.4k
Fork
8.1k
Merge trung bình
2 ngày 13 giờ
Pull request đã merge (30 ngày)
96

Mô tả

Description

The following code:

<?php
strtotime("2.37685 weeks");

Resulted in this output:

1613443020

The code interpreted 2.37685 weeks as 02:37 (hours) and 685 weeks. This is non logical input of course (and not GNU compliant). But this isn't a very logical interpretation of this value from a human perspective and can easily be used incorrectly by users of the code without noticing.

The parser decided to not be able to recognize weeks, then fallback to hours, interpret up to 2 decimals (compliant with hour parsing), then split the remainder and continue parsing, interpreting the rest as the input for weeks.

This has been a known (usability) issue since 2007, when it was first encountered by Wikipedia, but an upstream ticket was never filed until now.

I consider this a usability pitfall of this function, that in my opinion should be rectified

  • it is illogical that a decimal is cutoff at 2 places
  • the cutoff value is assigned an implicit unit
  • the remainder of the value is suddenly a NEW secondary input
  • it adds both of them to form something way bigger than the user had expected

I suggest that if a decimal is recognized and unit is weeks, that this function throws a warning (recognize but don't accept)

PHP Version
PHP 8.4.16 (cli) (built: Dec 16 2025 16:03:34) (NTS)
Copyright (c) The PHP Group
Built by Homebrew
Zend Engine v4.4.16, Copyright (c) Zend Technologies
    with Xdebug v3.4.0, Copyright (c) 2002-2024, by Derick Rethans
    with Zend OPcache v8.4.16, Copyright (c), by Zend Technologies
Operating System

macos

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Đánh giá

Issue này chưa được đánh giá.

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.