Ben bu yapıyorum app/views/mymodel/add.ctp
:
<?php echo $form->input('Mymodel.mydatefield'); ?>
Ve sonra, in app/controllers/mymodel_controller.php
,
function add() {
# ... (if we have some submitted data)
$datestring = $this->data['Mymodel']['mydatefield']['year'] . '-' .
$this->data['Mymodel']['mydatefield']['month'] . '-' .
$this->data['Mymodel']['mydatefield']['day'];
$mydatefield = DateTime::createFromFormat('Y-m-d', $datestring);
}
Absolutly has bunu yapmak için daha iyi bir yolu var olmak - Ben sadece yol henüz CakePHP'ye bulamadık ...
Ne yapmak istiyorsunuz nedir:
function add() {
# ... (if we have some submitted data)
$mydatefield = $this->data['Mymodel']['mydatefiled']; # obviously doesn't work
}