5

尝试使用 phpActiveRecord 在表中创建记录时,出现以下错误:

Invalid datetime format: 1292 Incorrect datetime value: '2013-06-20 11:59:08 PDT' for column 'created_at'

正在运行的代码:

$new_cart = new QuoteRequest();
$new_cart->status = "cart";
$new_cart->save();

我已经追踪到 phpActiveRecord 中的相关行。文件 Connection.php,第 55-59 行:

/**
 * Database's datetime format
 * @var string
 */
static $datetime_format = 'Y-m-d H:i:s T';

以及使用它的行(Connection.php,第 457-466 行):

/**
 * Return a date time formatted into the database's datetime format.
 *
 * @param DateTime $datetime The DateTime object
 * @return string
 */
public function datetime_to_string($datetime)
{
  return $datetime->format(static::$datetime_format);
}

以及转换值的位置(Table.php 第 394-412 行):

private function &process_data($hash)
{
    if (!$hash)
        return $hash;

    foreach ($hash as $name => &$value)
    {
        if ($value instanceof \DateTime)
        {
            if (isset($this->columns[$name]) && $this->columns[$name]->type == Column::DATE)
                $hash[$name] = $this->conn->date_to_string($value);
            else
                $hash[$name] = $this->conn->datetime_to_string($value);
        }
        else
            $hash[$name] = $value;
    }
    return $hash;
}

我使用的是 MySQL 5.6.10 版本,该created_at字段是时间戳。

问题:这里的phpActiveRecord有什么问题,还是MySQL的问题?

4

3 回答 3

8
static $datetime_format = 'Y-m-d H:i:s T';

我认为你应该删除它'T'(它给你PDT,即时区缩写),因为它不是时间戳格式的一部分。

应该是这样:

static $datetime_format = 'Y-m-d H:i:s';
于 2013-06-20T19:33:43.323 回答
4

接受的答案有效;但是,您正在编写包的代码。这意味着每当您在项目中更新 PHP-AR 时,您都会丢失该更改。

更好的方法是在项目上设置 AR 时在执行时间上覆盖它:

ActiveRecord\Config::initialize(function($cfg) {
  // [...] Your init config goes here
  ActiveRecord\Connection::$datetime_format = 'Y-m-d H:i:s';
});

您的 init 配置可能会有所不同,因此请务必根据您的需要进行调整。

覆盖您的项目而不是更改供应商的核心文件:

  1. 是好的做法;
  2. 让参与您项目的任何人都能清楚地了解您的定制;
  3. 如果您在项目中更新 PHP-AR,请防止代码中断。
于 2016-05-12T08:43:42.183 回答
-1

问题的根本原因是您没有设置默认时区。

您可能会在本地而不是服务器上看到这一点,因为服务器在配置中设置了时区。您可以在您的 php 配置中本地设置它,也可以在 ActiveRecord.php 要求上方的源代码顶部使用以下内容进行设置:

date_default_timezone_set('America/New_York');
于 2014-02-26T03:50:03.360 回答