我需要遍历一个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。
$_POST