一尘不染

PHP如何循环遍历post数组

php

我需要遍历一个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[]" />

但是我不知道从哪里开始。


阅读 780

收藏
2020-05-29

共1个答案

一尘不染

这是您的操作方式:

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

这会照顾传入的变量和数组$_POST

2020-05-29