class DiffArray (View source)

Provides helpers to perform diffs on multi dimensional arrays.

Methods

static array
diffAssocRecursive(array $array1, array $array2)

Recursively computes the difference of arrays with additional index check.

Details

static array diffAssocRecursive(array $array1, array $array2)

Recursively computes the difference of arrays with additional index check.

This is a version of array_diff_assoc() that supports multidimensional arrays.

Parameters

array $array1

The array to compare from.

array $array2

The array to compare to.

Return Value

array

Returns an array containing all the values from array1 that are not present in array2.