首页 > 代码库 > PHP表单数组的具体使用方法介绍

PHP表单数组的具体使用方法介绍

 1     < input name="a[]" value="http://www.mamicode.com/1" />  2     < input name="a[]" value="http://www.mamicode.com/2" />  3     < input name="a[]" value="http://www.mamicode.com/3" />  4     $_POST结果为 5     Array   6     (   7     [a] => Array   8     (   9     [0] => 1  10     [1] => 2  11     [2] => 3  12     )  13     ) 

那么如果这样命名表单:

 1     < input name="a[2]" value="http://www.mamicode.com/1" />  2     < input name="a[5]" value="http://www.mamicode.com/2" />  3     < input name="a[9]" value="http://www.mamicode.com/3" />  4     $_POST输出结果为 5     Array   6     (   7     [a] => Array   8     (   9     [2] => 1  10     [5] => 2  11     [9] => 3  12     )  13     ) 

继续测试PHP表单数组:

 1     < input name="a[aa]" value="http://www.mamicode.com/1" />  2     < input name="a[bb]" value="http://www.mamicode.com/2" />  3     < input name="a[cc]" value="http://www.mamicode.com/3" />  4       5     $_POST输出结果为 6     Array   7     (   8     [a] => Array   9     (  10     [aa] => 1  11     [bb] => 2  12     [cc] => 3  13     )14     )

 

PHP表单数组的具体使用方法介绍