Inhaltsverzeichnis
回复讨论(解决方案)
Heim Backend-Entwicklung PHP-Tutorial 请问php二维数组 查找相同的值合并 如何写?

请问php二维数组 查找相同的值合并 如何写?

Jun 23, 2016 pm 01:44 PM

这个是数组 
主要功能就是Thinkphp视图模型里查询的结果  我想

查询每个数组里的相同的标题值 然后进行合并                合并数组 貌似用array_merge()
我怎么查找相同的标题呢  foreach 遍历 返回数组里的索引值 可以么       貌似 key() 函数有这个功能 求好心人具体写个

相同的标题 数组元素的位置 这样返回 合并的时候就直接 这样的形式用 可以么
array_merge(array[0],array[1])

相同的标题 然后合并的是图片的连接字段这样 pictureurl就是这个不一样
简单说就是多图上传 发文章这样的  文章找找以后要是有几千篇 那数组就是好几倍的量  高效的计算 能用的 求大神指点啊~ 
这样

array(2) {  [0] => array(5) {    ["picTitle"] => string(33) "标题1"    ["picCategroy"] => string(6) "分类"    ["picAuthor"] => string(12) "作者"    ["picPostTime"] => string(19) "2014-11-20 16:05:16"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141120/546da0784831c.png"  }  [1] => array(5) {    ["picTitle"] => string(33) "标题1"    ["picCategroy"] => string(6) "分类"    ["picAuthor"] => string(12) "作者"    ["picPostTime"] => string(19) "2014-11-20 16:05:16"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141120/546da0746edb8.png"  }}
Nach dem Login kopieren


回复讨论(解决方案)

那你最终要达成什么样的结果呢?
目的不同,算法也不同

那你最终要达成什么样的结果呢?
目的不同,算法也不同


array(2) {  [0] => array(5) {    ["picTitle"] => string(33) "标题1"    ["picCategroy"] => string(6) "分类"    ["picAuthor"] => string(12) "作者"    ["picPostTime"] => string(19) "2014-11-20 16:05:16"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141120/546da0784831c.png,attachment/picture/uploadify/20141120/546da0746edb8.png"  }}
Nach dem Login kopieren

就是这样的 相同的标题 不同的就是pictureurl
合并就行了 求版主指点~

$ar = array(  array(    "picTitle" => "标题1",    "picCategroy" => "分类",    "picAuthor" => "作者",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0784831c.png",  ),  array(    "picTitle" => "标题1",    "picCategroy" => "分类",    "picAuthor" => "作者",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0746edb8.png",  ),);foreach(call_user_func_array('array_merge_recursive', $ar) as $key=>$item) {  $res[$key] = join(',', array_unique($item));}var_export($res);
Nach dem Login kopieren
Nach dem Login kopieren
array (  'picTitle' => '标题1',  'picCategroy' => '分类',  'picAuthor' => '作者',  'picPostTime' => '2014-11-20 16:05:16',  'pictureurl' => 'attachment/picture/uploadify/20141120/546da0784831c.png,attachment/picture/uploadify/20141120/546da0746edb8.png',)
Nach dem Login kopieren
Nach dem Login kopieren

$ar = array(  array(    "picTitle" => "标题1",    "picCategroy" => "分类",    "picAuthor" => "作者",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0784831c.png",  ),  array(    "picTitle" => "标题1",    "picCategroy" => "分类",    "picAuthor" => "作者",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0746edb8.png",  ),);foreach(call_user_func_array('array_merge_recursive', $ar) as $key=>$item) {  $res[$key] = join(',', array_unique($item));}var_export($res);
Nach dem Login kopieren
Nach dem Login kopieren
array (  'picTitle' => '标题1',  'picCategroy' => '分类',  'picAuthor' => '作者',  'picPostTime' => '2014-11-20 16:05:16',  'pictureurl' => 'attachment/picture/uploadify/20141120/546da0784831c.png,attachment/picture/uploadify/20141120/546da0746edb8.png',)
Nach dem Login kopieren
Nach dem Login kopieren


版主大人 还得麻烦您看眼 这个是在相同的标题下才合并的 貌似有点复杂
array(6) {  [0] => array(5) {    ["picTitle"] => string(7) "标题2"    ["picCategroy"] => string(6) "海报"    ["picAuthor"] => string(12) "星耀学园"    ["picPostTime"] => string(19) "2014-11-26 11:59:50"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141126/547550278b7db.jpg"  }  [1] => array(5) {    ["picTitle"] => string(7) "标题2"    ["picCategroy"] => string(6) "海报"    ["picAuthor"] => string(12) "星耀学园"    ["picPostTime"] => string(19) "2014-11-26 11:59:50"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141126/54755027ab89b.jpg"  }  [2] => array(5) {    ["picTitle"] => string(7) "标题2"    ["picCategroy"] => string(6) "海报"    ["picAuthor"] => string(12) "星耀学园"    ["picPostTime"] => string(19) "2014-11-26 11:59:50"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141126/547550273b753.jpg"  }  [3] => array(5) {    ["picTitle"] => string(7) "标题2"    ["picCategroy"] => string(6) "海报"    ["picAuthor"] => string(12) "星耀学园"    ["picPostTime"] => string(19) "2014-11-26 11:59:50"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141126/54755027d8488.jpg"  }  [4] => array(5) {    ["picTitle"] => string(33) "同步写入信息和附件表里"    ["picCategroy"] => string(6) "海报"    ["picAuthor"] => string(12) "星耀学园"    ["picPostTime"] => string(19) "2014-11-20 16:05:16"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141120/546da0746edb8.png"  }  [5] => array(5) {    ["picTitle"] => string(33) "同步写入信息和附件表里"    ["picCategroy"] => string(6) "海报"    ["picAuthor"] => string(12) "星耀学园"    ["picPostTime"] => string(19) "2014-11-20 16:05:16"    ["pictureurl"] => string(55) "attachment/picture/uploadify/20141120/546da0784831c.png"  }}
Nach dem Login kopieren

用您这个处理完 都合并在一起了 我想是不同的标题的是不一样的 标题1 相同标题的都合并在一起 一个数组 标题2相同的合并在一起一个数组 就是图片链接pictureurl 这个进行合并 求大大指点 如何判断很多个标题里 判断标题是重复的呢 这个肯定是一个标题有多个重复的数组, 主要是区分去多个不同标题。
array ( 'picTitle' => '标题2,同步写入信息和附件表里', 'picCategroy' => '海报', 'picAuthor' => '星耀学园', 'picPostTime' => '2014-11-26 11:59:50,2014-11-20 16:05:16', 'pictureurl' => 'attachment/picture/uploadify/20141126/547550278b7db.jpg,attachment/picture/uploadify/20141126/54755027ab89b.jpg,attachment/picture/uploadify/20141126/547550273b753.jpg,attachment/picture/uploadify/20141126/54755027d8488.jpg,attachment/picture/uploadify/20141120/546da0746edb8.png,attachment/picture/uploadify/20141120/546da0784831c.png', )
Nach dem Login kopieren

$ar = array(  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/547550278b7db.jpg",  ),  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/54755027ab89b.jpg",  ),  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/547550273b753.jpg",  ),  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/54755027d8488.jpg",  ),  array(    "picTitle" => "同步写入信息和附件表里",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0746edb8.png",  ),  array(    "picTitle" => "同步写入信息和附件表里",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0784831c.png",  ),);$res = array();foreach($ar as $item) {  if(! isset($res[$item['picTitle']])) $res[$item['picTitle']] = $item;  else $res[$item['picTitle']]['pictureurl'] .= ',' . $item['pictureurl'];}var_export(array_values($res));
Nach dem Login kopieren
Nach dem Login kopieren
array (  0 =>   array (    'picTitle' => '标题2',    'picCategroy' => '海报',    'picAuthor' => '星耀学园',    'picPostTime' => '2014-11-26 11:59:50',    'pictureurl' => 'attachment/picture/uploadify/20141126/547550278b7db.jpg,attachment/picture/uploadify/20141126/54755027ab89b.jpg,attachment/picture/uploadify/20141126/547550273b753.jpg,attachment/picture/uploadify/20141126/54755027d8488.jpg',  ),  1 =>   array (    'picTitle' => '同步写入信息和附件表里',    'picCategroy' => '海报',    'picAuthor' => '星耀学园',    'picPostTime' => '2014-11-20 16:05:16',    'pictureurl' => 'attachment/picture/uploadify/20141120/546da0746edb8.png,attachment/picture/uploadify/20141120/546da0784831c.png',  ),)
Nach dem Login kopieren
Nach dem Login kopieren

随便写了下,没测试过,大楷是这么个思路

$ar = array(
array(
"picTitle" => "标题1",
"picCategroy" => "分类",
"picAuthor" => "作者",
"picPostTime" => "2014-11-20 16:05:16",
"pictureurl" => "attachment/picture/uploadify/20141120/546da0784831c.png",
),
array(
"picTitle" => "标题1",
"picCategroy" => "分类",
"picAuthor" => "作者",
"picPostTime" => "2014-11-20 16:05:16",
"pictureurl" => "attachment/picture/uploadify/20141120/546da0746edb8.png",
),
);

//标题=>数组索引数组
$map_arr=array();
foreach($ar as $key=>$item)
{
//判断是否在标题=>数组索引数组中
if(isset($map_arr[$item['picTitle']]))
{
//在的话合并
$ar[$key]=array_merge($ar[$key],$map_arr[$item['picTitle']]);
}
else
{
//不在的话存入映射索引
$map_arr[$item['picTitle']]=$item;
unset($ar[$key]); //删除原来在数组存在的值
}
}

补充下 unset($ar[$key]); //删除原来在数组存在的值
这句移动到这个下面,疏忽写错了
//在的话合并
$ar[$key]=array_merge($ar[$key],$map_arr[$item['picTitle']]);

$arr = array(  array(    "picTitle" => "标题1",    "picCategroy" => "分类",    "picAuthor" => "作者",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0784831c.png",  ),  array(    "picTitle" => "标题1",    "picCategroy" => "分类",    "picAuthor" => "作者",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0746edb8.png",  ));$item=array();foreach($arr as $key=>$value){    foreach($value as $k=>$v){        if(!isset($item[$k])){            $item[$k]=$v;        }    }}print_r($item);
Nach dem Login kopieren

$ar = array(  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/547550278b7db.jpg",  ),  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/54755027ab89b.jpg",  ),  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/547550273b753.jpg",  ),  array(    "picTitle" => "标题2",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-26 11:59:50",    "pictureurl" => "attachment/picture/uploadify/20141126/54755027d8488.jpg",  ),  array(    "picTitle" => "同步写入信息和附件表里",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0746edb8.png",  ),  array(    "picTitle" => "同步写入信息和附件表里",    "picCategroy" => "海报",    "picAuthor" => "星耀学园",    "picPostTime" => "2014-11-20 16:05:16",    "pictureurl" => "attachment/picture/uploadify/20141120/546da0784831c.png",  ),);$res = array();foreach($ar as $item) {  if(! isset($res[$item['picTitle']])) $res[$item['picTitle']] = $item;  else $res[$item['picTitle']]['pictureurl'] .= ',' . $item['pictureurl'];}var_export(array_values($res));
Nach dem Login kopieren
Nach dem Login kopieren
array (  0 =>   array (    'picTitle' => '标题2',    'picCategroy' => '海报',    'picAuthor' => '星耀学园',    'picPostTime' => '2014-11-26 11:59:50',    'pictureurl' => 'attachment/picture/uploadify/20141126/547550278b7db.jpg,attachment/picture/uploadify/20141126/54755027ab89b.jpg,attachment/picture/uploadify/20141126/547550273b753.jpg,attachment/picture/uploadify/20141126/54755027d8488.jpg',  ),  1 =>   array (    'picTitle' => '同步写入信息和附件表里',    'picCategroy' => '海报',    'picAuthor' => '星耀学园',    'picPostTime' => '2014-11-20 16:05:16',    'pictureurl' => 'attachment/picture/uploadify/20141120/546da0746edb8.png,attachment/picture/uploadify/20141120/546da0784831c.png',  ),)
Nach dem Login kopieren
Nach dem Login kopieren



谢谢版主大人 解决了 只不过最后的这个var_export函数去掉 就是我要的结果了~
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
3 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Beste grafische Einstellungen
3 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. So reparieren Sie Audio, wenn Sie niemanden hören können
3 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: Wie man alles in Myrise freischaltet
4 Wochen vor By 尊渡假赌尊渡假赌尊渡假赌

Heiße Werkzeuge

Notepad++7.3.1

Notepad++7.3.1

Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1

Senden Sie Studio 13.0.1

Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

SublimeText3 Mac-Version

SublimeText3 Mac-Version

Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Arbeiten mit Flash -Sitzungsdaten in Laravel Arbeiten mit Flash -Sitzungsdaten in Laravel Mar 12, 2025 pm 05:08 PM

Laravel vereinfacht die Behandlung von temporären Sitzungsdaten mithilfe seiner intuitiven Flash -Methoden. Dies ist perfekt zum Anzeigen von kurzen Nachrichten, Warnungen oder Benachrichtigungen in Ihrer Anwendung. Die Daten bestehen nur für die nachfolgende Anfrage standardmäßig: $ Anfrage-

Curl in PHP: So verwenden Sie die PHP -Curl -Erweiterung in REST -APIs Curl in PHP: So verwenden Sie die PHP -Curl -Erweiterung in REST -APIs Mar 14, 2025 am 11:42 AM

Die PHP Client -URL -Erweiterung (CURL) ist ein leistungsstarkes Tool für Entwickler, das eine nahtlose Interaktion mit Remote -Servern und REST -APIs ermöglicht. Durch die Nutzung von Libcurl, einer angesehenen Bibliothek mit Multi-Protokoll-Dateien, erleichtert PHP Curl effiziente Execu

Vereinfachte HTTP -Reaktion verspottet in Laravel -Tests Vereinfachte HTTP -Reaktion verspottet in Laravel -Tests Mar 12, 2025 pm 05:09 PM

Laravel bietet eine kurze HTTP -Antwortsimulationssyntax und vereinfache HTTP -Interaktionstests. Dieser Ansatz reduziert die Code -Redundanz erheblich, während Ihre Testsimulation intuitiver wird. Die grundlegende Implementierung bietet eine Vielzahl von Verknüpfungen zum Antworttyp: Verwenden Sie Illuminate \ Support \ facades \ http; Http :: fake ([ 'Google.com' => 'Hallo Welt',, 'github.com' => ['foo' => 'bar'], 'Forge.laravel.com' =>

12 Beste PHP -Chat -Skripte auf Codecanyon 12 Beste PHP -Chat -Skripte auf Codecanyon Mar 13, 2025 pm 12:08 PM

Möchten Sie den dringlichsten Problemen Ihrer Kunden in Echtzeit und Sofortlösungen anbieten? Mit Live-Chat können Sie Echtzeitgespräche mit Kunden führen und ihre Probleme sofort lösen. Sie ermöglichen es Ihnen, Ihrem Brauch einen schnelleren Service zu bieten

Erklären Sie das Konzept der späten statischen Bindung in PHP. Erklären Sie das Konzept der späten statischen Bindung in PHP. Mar 21, 2025 pm 01:33 PM

In Artikel wird die in PHP 5.3 eingeführte LSB -Bindung (LSB) erörtert, die die Laufzeitauflösung der statischen Methode ermöglicht, um eine flexiblere Vererbung zu erfordern. Die praktischen Anwendungen und potenziellen Perfo von LSB

Rahmensicherheitsmerkmale: Schutz vor Schwachstellen. Rahmensicherheitsmerkmale: Schutz vor Schwachstellen. Mar 28, 2025 pm 05:11 PM

In Artikel werden wichtige Sicherheitsfunktionen in Frameworks erörtert, um vor Schwachstellen zu schützen, einschließlich Eingabevalidierung, Authentifizierung und regelmäßigen Aktualisierungen.

Anpassung/Erweiterung von Frameworks: So fügen Sie benutzerdefinierte Funktionen hinzu. Anpassung/Erweiterung von Frameworks: So fügen Sie benutzerdefinierte Funktionen hinzu. Mar 28, 2025 pm 05:12 PM

In dem Artikel werden Frameworks hinzugefügt, das sich auf das Verständnis der Architektur, das Identifizieren von Erweiterungspunkten und Best Practices für die Integration und Debuggierung hinzufügen.

See all articles