获取输入值数组:checkbox

发布于 2024-12-07 12:50:53 字数 1122 浏览 0 评论 0原文

为什么在以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

厌倦 2024-12-14 12:50:53

仅当已选中复选框(设置了复选标记)时,才会设置复选框值(为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文