无法解析位置 41 (i) 处的时间字符串:双时区规范

2022-08-30 17:11:30

我使用的是jquery daterangepicker,它又使用jQuery datapicker

我的 Ubuntu 系统工作正常。浏览器正在发送一个可解析的字符串:

$dateStarted = new \DateTime($post['startDate']); // Thu Nov 15 2012 00:00:00 GMT-0700 (MST)
print_r($dateStarted);

输出:

DateTime Object
(
    [date] => 2012-11-15 00:00:00
    [timezone_type] => 1
    [timezone] => -07:00
)

在我们的测试人员Windows系统上,浏览器在字符串中发送扩展的时区:

$dateStarted = new \DateTime($post['startDate']); // Thu Nov 15 2012 00:00:00 GMT-0700 (Mountain Standard Time)
print_r($dateStarted);

抛出和异常:

Exception: DateTime::__construct(): Failed to parse time string 
 (Thu Nov 15 2012 00:00:00 GMT-0700 (Mountain Standard Time)) 
 at position 41 (i): Double timezone specification

我已经谷歌搜索了一下,找不到有关此特定PHP错误的任何资源。

我正在通过去掉括号中的文本来“解决”这个问题,该文本返回相同的结果:

$dateString = strstr($dateString, " (", true); // Thu Nov 15 2012 00:00:00 GMT-0700

这似乎很糟糕,我正在寻找有关如何正确执行此操作的建议。


答案 1

使用Marc B建议的DateTime::createFromFormat()似乎是一个更好的解决方案。

我最终得到的是:

$dateStarted = \DateTime::createFromFormat('D M d Y H:i:s e+', $post['startDate']); // Thu Nov 15 2012 00:00:00 GMT-0700 (Mountain Standard Time)
print_r($dateStarted);
print_r(\DateTime::getLastErrors());

现在输出正确的日期:

DateTime Object
(
    [date] => 2012-11-15 00:00:00
    [timezone_type] => 1
    [timezone] => -07:00
)

Array
(
    [warning_count] => 1
    [warnings] => Array
        (
            [33] => Trailing data
        )

    [error_count] => 0
    [errors] => Array
        (
        )

)

格式的末尾是使这项工作发挥作用的魔力。+


答案 2

我会说这是一个错误。使用此字符串时,您会收到相同的错误

$dateStarted = new \DateTime("Thu Nov 15 2012 00:00:00 GMT-0700 (abcdefg)");

少一个

$dateStarted = new \DateTime("Thu Nov 15 2012 00:00:00 GMT-0700 (abcdef)");

并且它被“正确”解析。

时区字符串似乎限制为 6 个字符。除非您可以并且愿意配置Windows客户端,否则我会说剥离“时区”是一个可行的“解决方案”。


推荐