PHP how to loop through a post array

后端 未结 6 1150
北恋
北恋 2020-11-30 10:31

I need to loop through a post array and sumbit it.

#stuff 1



        
6条回答
  •  悲&欢浪女
    2020-11-30 11:05

    This is how you would do it:

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

    This looks after both variables and arrays passed in $_POST.

提交回复
热议问题