我在模板中有以下代码:
<?= $this->Form->date('selected_date', ['required' => true]) ?>
这显示了一个可爱的新动态日期选择器,但使用美国格式“mm/dd/yyyy”。我想要的是“dd/mm/YYYY”
在 app.php 中,我将 APP_DEFAULT_LOCALE 设置为 en-GB。在 AppController.php 我设置了以下内容:
I18n::setLocale('en-GB');
Time::setDefaultLocale('en-GB'); // For any mutable DateTime
FrozenTime::setDefaultLocale('en-GB'); // For any immutable DateTime
Date::setDefaultLocale('en-GB'); // For any mutable Date
FrozenDate::setDefaultLocale('en-GB'); // For any immutable Date
如何更改格式?我在文档或在线中找不到任何内容。