本文介绍了阵列相交的对象数组PHP的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何array_intersect对象数组。

I want to know how to array_intersect for object array.

推荐答案

不错的toString功能已经实现,被称为连载;),因此

nice toString function is already implemented and is called serialize ;) so

array_map('反序列化',
             array_intersect(array_map('序列化',
  $ OBJ1),array_map('序列化',$ OBJ2))
           );

会做的工作,例如提到较高的不工作的原因array_intersect工作的只有字符串作为也提到了有人

will do the work, example mentioned higher don't work 'cause array_intersect work's only with strings as someone mentioned too

这篇关于阵列相交的对象数组PHP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 16:04