gpt4 book ai didi

PHP如何循环遍历post数组

转载 作者:行者123 更新时间:2023-12-03 01:54:43 25 4
gpt4 key购买 nike

我需要循环遍历 post 数组并对其进行求和。

#stuff 1
<input type="text" id="stuff" name="stuff[]" />
<input type="text" id="more_stuff" name="more_stuff[]" />
#stuff 2
<input type="text" id="stuff" name="stuff[]" />
<input type="text" id="more_stuff" name="more_stuff[]" />

但我不知道从哪里开始。

最佳答案

您将这样做:

foreach( $_POST as $stuff ) {
if( is_array( $stuff ) ) {
foreach( $stuff as $thing ) {
echo $thing;
}
} else {
echo $stuff;
}
}

这会照顾在 $_POST 中传递的变量和数组。

关于PHP如何循环遍历post数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10262763/

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