Welcome to the Cookbook

loading...

7.3.5.1 checkbox

The original text for this section has changed since it was translated. Please help resolve this difference. You can:

More information about translations

checkbox(string $fieldName, array $options)

チェックボックスフォーム要素を生成します。このメソッドは指定されたフィールドのデータを 強制的に submit するために関連する hidden フォーム入力も生成します。

<?php echo $form->checkbox('done'); ?>
 
出力:
 
<input type="hidden" name="data[User][done]" value="0" id="UserDone_" />
<input type="checkbox" name="data[User][done]" value="1" id="UserDone" />
  1. <?php echo $form->checkbox('done'); ?>
  2. 出力:
  3. <input type="hidden" name="data[User][done]" value="0" id="UserDone_" />
  4. <input type="checkbox" name="data[User][done]" value="1" id="UserDone" />