当尝试使用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问题?

最佳答案

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

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

因此应为:
static $datetime_format = 'Y-m-d H:i:s';

关于phpActiveRecord不正确的DateTimeFormat,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17222180/

10-11 03:10