比较嵌套关联数组的差异
在编程环境中,处理多维关联数组时,通常需要比较它们的内容并找出差异。考虑有两个数组的场景:
$pageids = [ ['id' => 1, 'linklabel' => 'Home', 'url' => 'home'], ['id' => 2, 'linklabel' => 'Graphic Design', 'url' => 'graphicdesign'], ['id' => 3, 'linklabel' => 'Other Design', 'url' => 'otherdesign'], ['id' => 6, 'linklabel' => 'Logo Design', 'url' => 'logodesign'], ['id' => 15, 'linklabel' => 'Content Writing', 'url' => 'contentwriting'], ]; $parentpage = [ ['id' => 2, 'linklabel' => 'Graphic Design', 'url' => 'graphicdesign'], ['id' => 3, 'linklabel' => 'Other Design', 'url' => 'otherdesign'], ];
目标是查找 $pageids 中不存在于 $parentpage 中的行。如果数组包含嵌套关联数组,则单独使用 array_diff_assoc() 可能不会产生所需的结果。为了解决这个问题,我们可以利用 array_map() 和 unserialize()。
$pageWithNoChildren = array_map('unserialize', array_diff(array_map('serialize', $pageids), array_map('serialize', $parentpage)));
首先,array_map() 迭代 $pageids 和 $parentpage 中的子数组,并将每个子数组序列化为使用serialize() 的字符串表示形式。这有效地将多维数组转换为以字符串作为元素的一维数组。
接下来,array_diff() 比较子数组的字符串表示形式,并返回一个仅包含差异的数组。然后将生成的数组传递回 array_map(),该数组迭代每个字符串并使用 unserialize() 将其反序列化回其原始子数组表示形式。
因此, $pageWithNoChildren 将包含一个数组表示 $pageids 中不存在于 $parentpage 中的行的子数组。这种方法有效地比较嵌套关联数组的内容并提供所需的差异。
以上是如何有效比较嵌套关联数组的差异?的详细内容。更多信息请关注PHP中文网其他相关文章!