具有欧洲日期格式的 cakephp 3.1 输入字段
cakephp 3.1 input field with european date format
我有一个 table,其中包含用户记录(姓名、名字、生日等),我想按姓名或生日或所有可能的组合来查找用户。
我的代码运行良好,但生日是以美国格式 (YYYY-MM-dd) 存储的,所以我必须搜索这种格式的日期才能获得正确的记录。这真的很烦人,因为在德国我们使用欧洲格式 (dd.MM.YYYY),我想按照我们习惯的格式搜索日期。现在我需要帮助为输入字段提供欧洲格式并获得正确的记录。
希望您理解我的问题。 :)
这是我的控制器代码的摘录:
$name = $this->request->data['name'];
$forename = $this->request->data['forename'];
$birthdate = $this->request->data['birthdate'];
if($name || $forename || $birthdate){
$query = $this->find()
->where([
'name LIKE' => '%'.$name.'%',
'forename LIKE' => '%'.$forename.'%',
'birthdate LIKE' => '%'.$birthdate.'%'
]);
$number = $query->count();
$this->set('users', $this->paginate($query));
$this->set('_serialize', ['users']);
}
这是我认为代码的相关部分:
foreach($users as $user):
h($user->name)
h($user->forename)
h($user->birthdate)
endforeach;
非常感谢。
您的生日存储正确。
设置在bootstrap.php
/**
* Set the default locale. This controls how dates, number and currency is
* formatted and sets the default language to use for translations.
*/
ini_set('intl.default_locale', 'de_DE');
查看/搜索表单
<?= $this->From->input('birthdate',['type' => 'text']); ?>
使用 js / jquery 日期选择器
$('#datepicker').datepicker({ dateFormat: 'dd.mm.yy' });
我有一个 table,其中包含用户记录(姓名、名字、生日等),我想按姓名或生日或所有可能的组合来查找用户。
我的代码运行良好,但生日是以美国格式 (YYYY-MM-dd) 存储的,所以我必须搜索这种格式的日期才能获得正确的记录。这真的很烦人,因为在德国我们使用欧洲格式 (dd.MM.YYYY),我想按照我们习惯的格式搜索日期。现在我需要帮助为输入字段提供欧洲格式并获得正确的记录。
希望您理解我的问题。 :)
这是我的控制器代码的摘录:
$name = $this->request->data['name'];
$forename = $this->request->data['forename'];
$birthdate = $this->request->data['birthdate'];
if($name || $forename || $birthdate){
$query = $this->find()
->where([
'name LIKE' => '%'.$name.'%',
'forename LIKE' => '%'.$forename.'%',
'birthdate LIKE' => '%'.$birthdate.'%'
]);
$number = $query->count();
$this->set('users', $this->paginate($query));
$this->set('_serialize', ['users']);
}
这是我认为代码的相关部分:
foreach($users as $user):
h($user->name)
h($user->forename)
h($user->birthdate)
endforeach;
非常感谢。
您的生日存储正确。
设置在bootstrap.php
/**
* Set the default locale. This controls how dates, number and currency is
* formatted and sets the default language to use for translations.
*/
ini_set('intl.default_locale', 'de_DE');
查看/搜索表单
<?= $this->From->input('birthdate',['type' => 'text']); ?>
使用 js / jquery 日期选择器
$('#datepicker').datepicker({ dateFormat: 'dd.mm.yy' });