$ _POST中的多维关联数组仅返回最后一个值

时间:2018-01-18 22:08:24

标签: php html arrays multidimensional-array superglobals

我尝试制作一个多维关联数组,但$ _post中只返回一个值。

参见工作示例:

<html>
<?php
    if (isset( $_POST['form_submit'])){
        $Step=$_POST['form_submit'];
        If ($Step>1) $Step=0;
    }else{
        $Step=0;
    }
switch ($Step) {
    case 0:
        echo '
        <form method="post">
        <input name="Txt[First]" type="text"/>
        <input name="Txt[First][Second]" type="text"/>
        <input name="Txt[First][Second][Third]" type="text"/>
        <input name="Txt[First][Second][Third][Fourth]" type="text"/>
        <button type="submit" name="form_submit" value="'.($Step+1).'">submit</button>
        </form>';
    break;

    case 1:
        echo '<br/></br>print_r($_POST):<br/>';
        print_r($_POST);
    break;
}
?>
</html>

修改

如果我添加&#34; []&#34;在每个输入名称的末尾,我将以错误的方式获得所有值:
$ _POST将会像:

Array ( 
    [Txt] => Array ( 
        [First] => Array ( 
            [0] => one 
            [Second] => Array ( 
                [0] => two 
                [Third] => Array ( 
                    [0] => three 
                    [Fourth] => Array (
                        [0] => four 
                ) 
            ) 
        ) 
    ) 
)

但是我需要这样的东西:

$_Post[First] => one  
$_Post[First][Second] => two  
$_Post[First][Second][Third] => three  

......等等

1 个答案:

答案 0 :(得分:1)

你想要的是不可能的。您只能在数组中包含索引,但如果$_POST['Txt']['First']one之类的字符串,那么它也不能是具有['Second']索引的数组。

您可以将每个级别的文本放在命名元素中:

    <form method="post">
    <input name="Txt[First][text]" type="text"/>
    <input name="Txt[First][Second][text]" type="text"/>
    <input name="Txt[First][Second][Third][text]" type="text"/>
    <input name="Txt[First][Second][Third][Fourth][text]" type="text"/>
    <button type="submit" name="form_submit" value="'.($Step+1).'">submit</button>
    </form>';

然后结果将是:

$_Post['Txt'][First]['text'] => one  
$_Post['Txt'][First][Second]['text'] => two  
$_Post['Txt'][First][Second][Third]['text'] => three  
$_Post['Txt'][First][Second][Third][Fourth]['text'] => three