LoginSignup
16
17

More than 5 years have passed since last update.

CakePHPのFormHelperのInput Type Dateで年月日のemptyを別々にする

Posted at

まあ要はこうしたいということですね。
理想.png

とは言え普通のセレクトボックスのようにemptyを指定しても、こんな感じにしか指定できません。

echo $this->Form->input('誕生日', array(
    'type' => 'date',
    'dateFormat' => 'YMD',
    'monthNames' => false,
    'empty' => '選択してください',
));

通常.png

じゃあどうするかというと

echo $this->Form->input('誕生日', array(
    'type' => 'date',
    'dateFormat' => 'YMD',
    'monthNames' => false,
    'empty' => array('year' => '年', 'month' => '月', 'day' => '日'),
));

こんな感じでいけます。
情報が見つからなかったので備忘を含めて初投稿。

16
17
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
17