gpt4 book ai didi

php - Symfony2.8-Form 中的 MySQL 日期到 PHP DateTime 的转换

转载 作者:行者123 更新时间:2023-11-30 21:47:22 24 4
gpt4 key购买 nike

我有一个 Symfony 实体,存储生日如下:

/**
* @var \DateTime
* @Gedmo\Versioned
* @ORM\Column(name="birthday", type="date", nullable=true)
*/
protected $birthday;

在 MySQL 中,生日相应地存储为日期类型。现在,为了编辑实体,我使用了一个带有 Symfony DateType 字段的表单作为生日:

public function buildForm(FormBuilderInterface $builder, array $options) {
$builder
...
->add('birthday', DateType::class, [
'required' => false,
'widget' => 'single_text',
'format' => 'dd.MM.yyyy',
'attr'=> [
'style'=>'',
],
])
...
;
}

有趣的是,当数据库中存储的生日是 1901 年 12 月 13 日星期五之前的日期时,表格中会出现错误的日期(实际上是前一天的日期)。为了找出发生了什么,我将表单构建器中的格式属性更改为:

                'format' => 'dd.MM.yyyy HH:mm:ss z',

例如,如果日期是“26.02.1825”,它会在表单字段中显示“25.02.1825 23:53:28 GMT+0:53:28”,这看​​起来像是在使用一个非常奇怪的时区。所以,我想当 MySQL 日期条目通过 Doctrine 转换为 PHP 中的 DateTime 对象时一定有问题,我猜?

作为解决方法,我将 60 分钟添加到转换后的值(在属性的 getter 中),但必须有适当的方法来处理这个问题。有人可以帮我吗?

我敢肯定,这以前是一个问题,但我真的找不到任何类似的问题......

版本:

  • PHP 7.0.27
  • 交响乐 2.8
  • Doctrine 1.6

最佳答案

我找到了一种在较低代码级别上产生错误的方法:

$timestamp = -4570909200;
$dateTime = new \DateTime();
$dateTime->setTimestamp($timestamp);
print($dateTime->format('d.m.Y H:i:s').'<br>');
$formatter = new \IntlDateFormatter(\Locale::getDefault(), \IntlDateFormatter::MEDIUM, \IntlDateFormatter::NONE, 'Europe/Berlin', \IntlDateFormatter::GREGORIAN, 'dd.MM.yyyy HH:mm:ss (z)');
$formatter->setLenient(false);
$formatted = $formatter->format($timestamp);
print($formatted);

这会产生以下输出:

26.02.1825 00:00:00
25.02.1825 23:53:28 (GMT+0:53:28)

“欧洲/伦敦”或“欧洲/苏黎世”等时区会产生不同但同样奇怪的结果。也许,人们不应该使用这些特殊的时区,而应该使用“CET”?

终于也找到了类似的帖子,给出了答案:

PHP IntlDateFormatter wrong date/time conversion

关于php - Symfony2.8-Form 中的 MySQL 日期到 PHP DateTime 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48835852/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com