gpt4 book ai didi

php - post 形式的数据顺序是否与 web 形式的数据顺序相同?

转载 作者:可可西里 更新时间:2023-11-01 13:10:46 26 4
gpt4 key购买 nike

假设web表单有5个输入

<input name='the_same[]' value='different' />
<input name='the_same[]' value='different' />
<input name='the_same[]' value='different' />
<input name='the_same[]' value='different' />
<input name='the_same[]' value='different' />

当服务器端接收到 post 数据时,我使用 foreach 来接受数据,比如说

$the_same = new array();
foreach($_POST['the_same'] as $data)
$the_same[] = $data;

在服务器端保存的数据顺序会和网页形式一样吗?和跨浏览器,它可能是所有浏览器遵循的标准。

最佳答案

嗯,W3C recommendation on HTML forms确实说:

The control names/values are listed in the order they appear in the document.

不过,我认为让您的应用严重依赖该细节有点冒险。

关于php - post 形式的数据顺序是否与 web 形式的数据顺序相同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2565938/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com