如何在 cakephp 中选择第一个收音机 3.x
How to make first radio selected in cakephp 3.x
$policyYear =
Array
(
[1] => 1 Year
[2] => 2 Year
[3] => 3 Year
)
<div>
<?php
$options = $policyYear;
$attributes = array('legend' => false);
echo $this->Form->radio('policy_year', $options, $attributes);
?>
</div>
这是我的代码,它给出了三个单选按钮,其值分别为“1 年”、“2 年”、“3 年”。但我想最初将选定的值设置为“1 年”。我怎样才能做到这一点 ?。我是 cakephp 的新人。我知道核心 php。请帮忙
更新您的 $attributes
并增加价值
$attributes = array('legend' => false,'value' => $foo);
$policyYear =
Array
(
[1] => 1 Year
[2] => 2 Year
[3] => 3 Year
)
<div>
<?php
$options = $policyYear;
$attributes = array('legend' => false);
echo $this->Form->radio('policy_year', $options, $attributes);
?>
</div>
这是我的代码,它给出了三个单选按钮,其值分别为“1 年”、“2 年”、“3 年”。但我想最初将选定的值设置为“1 年”。我怎样才能做到这一点 ?。我是 cakephp 的新人。我知道核心 php。请帮忙
更新您的 $attributes
并增加价值
$attributes = array('legend' => false,'value' => $foo);