array(2) {     [0]=>     string(9) "www"/>   array(2) {     [0]=>     string(9) "www">

Maison >développement back-end >tutoriel php > 这个foreach该如何写

这个foreach该如何写

WBOY
WBOYoriginal
2016-06-13 12:35:20819parcourir

这个foreach该怎么写?
表单提交了2组数组过来:
array(2) {
  ["goods_id1"]=>
  array(2) {
    [0]=>
    string(9) "www.1.com"
    [1]=>
    string(7) "商品1"
  }
  ["goods_id2"]=>
  array(2) {
    [0]=>
    string(9) "www.2.com"
    [1]=>
    string(7) "商品2"
  }
}

怎样把 goods_id1 和 goods_id2 用foreache输出成这样:
商品1
商品2


foreach($_POST as $key => $value)
{
这里应该怎么写?
}

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn