获取输入值数组:checkbox
为什么在以下 PHP 代码中,offset[1] 中的 checkbox($service_un
) 输出 var_dump
为空?
此变量($service_un
)在以下 HTML 代码中获取作为数组的值 checkbox_un
,但不知道为什么在偏移量 [1] 上的输出 var_dump
中值 input:name="checkbox_un[1][]"
为空。如何修复它?
array(2) {
[0] = > array(2) {
[0] = > string(7)"Minibar" [1] = > string(12)"Teahouse"
}[1] = > array(2) {
[0] = > string(0)"" [1] = > string(0)""
}
}
代码:
<input type="text" name="name_un[]" value="jack">
<input type="checkbox" name="checkbox_un[0][]" value="Minibar">
<input type="checkbox" name="checkbox_un[0][]" value="Teahouse">
<input type="text" name="name_un[]" value="jim">
<input type="checkbox" name="checkbox_un[1][]" value="Television">
<input type="checkbox" name="checkbox_un[1][]" value="Foreign">
<?php
$name_un = $this->input->post('name_un');
$service_un = $this->input->post('checkbox_un');
var_dump($service_un); // This output
?>
Why in following PHP code output var_dump
for checkbox($service_un
) in offset[1] is empty?
this variable($service_un
) get values checkbox_un
in following HTML code that are as array but not know why in output var_dump
on offset[1] values input:name="checkbox_un[1][]"
are empty. how can fix it?
array(2) {
[0] = > array(2) {
[0] = > string(7)"Minibar" [1] = > string(12)"Teahouse"
}[1] = > array(2) {
[0] = > string(0)"" [1] = > string(0)""
}
}
Codes:
<input type="text" name="name_un[]" value="jack">
<input type="checkbox" name="checkbox_un[0][]" value="Minibar">
<input type="checkbox" name="checkbox_un[0][]" value="Teahouse">
<input type="text" name="name_un[]" value="jim">
<input type="checkbox" name="checkbox_un[1][]" value="Television">
<input type="checkbox" name="checkbox_un[1][]" value="Foreign">
<?php
$name_un = $this->input->post('name_un');
$service_un = $this->input->post('checkbox_un');
var_dump($service_un); // This output
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当已选中复选框(设置了复选标记)时,才会设置复选框值(为 HTML 输入标记中的值)。
只要不存在,就不会设置偏移量。 亲自尝试一下。
Checkbox values are only set (to the value in the HTML input tag), if the checkbox has been selected (the checkmark was set).
As long as it doesn't, the offset will not be set. Try it for yourself.