php 的数组合并问题怎么解决

WBOY
Libérer: 2016-06-06 20:37:39
original
935 Les gens l'ont consulté

<code>array(3) {
  [0] => array(2) {
    ["path"] => string(3) "111"
    ["title"] => string(35) "问题1"
  }
  [1] => array(2) {
    ["path"] => string(3) "222"
    ["title"] => string(35) "问题1"
  }
  [2] => array(2) {
    ["path"] => string(4) "5555"
    ["title"] => string(12) "问题2"
  }
}
</code>
Copier après la connexion
Copier après la connexion

怎么让他变成下面的这种格式

<code>array(2) {
  [0] => array(3) {
    ["title"] => string(35) "问题1"
    ["path"] => array(2) {
      [0]=> string(4) "111"
      [1] => string(4) "222"
    }
  }
  [1] => &array(3) {
    ["title"] => string(12) "问题2"
    ["id"] => string(1) "2"
    ["path"] => array(1) {
      [0] => string(4) "5555"
    }
  }
}
</code>
Copier après la connexion
Copier après la connexion

就是title相同的合并,path组成一个数组,以此类推

回复内容:

<code>array(3) {
  [0] => array(2) {
    ["path"] => string(3) "111"
    ["title"] => string(35) "问题1"
  }
  [1] => array(2) {
    ["path"] => string(3) "222"
    ["title"] => string(35) "问题1"
  }
  [2] => array(2) {
    ["path"] => string(4) "5555"
    ["title"] => string(12) "问题2"
  }
}
</code>
Copier après la connexion
Copier après la connexion

怎么让他变成下面的这种格式

<code>array(2) {
  [0] => array(3) {
    ["title"] => string(35) "问题1"
    ["path"] => array(2) {
      [0]=> string(4) "111"
      [1] => string(4) "222"
    }
  }
  [1] => &array(3) {
    ["title"] => string(12) "问题2"
    ["id"] => string(1) "2"
    ["path"] => array(1) {
      [0] => string(4) "5555"
    }
  }
}
</code>
Copier après la connexion
Copier après la connexion

就是title相同的合并,path组成一个数组,以此类推

array_merge

Étiquettes associées:
php
source:php.cn
Déclaration de ce site Web
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
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal