PHP如何循环遍历post数组

我需要遍历一个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数组 的全部内容, 来源链接: utcz.com/qa/427935.html

回到顶部