Zf2 フォームの日付要素があり、このように使用します。
$this->add(array(
'type' => 'Zend\Form\Element\Date',
'name' => 'releasedate',
'options' => array(
'label' => 'Release Date'
),
'attributes' => array(
'min' => '2012-01-01',
'max' => '2020-01-01',
'step' => '1',
)
));
クロムでは日付ピッカーを取得しますが、サファリやFirefoxでは取得しませんか? そのために新しい構成を行う必要がありますか?