Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
afdf1887
Commit
afdf1887
authored
12 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#1850798
by damiankloip, pfrenssen, chx: Need array_diff_assoc_recursive() for php 5.4.
parent
093088a4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/lib/Drupal/Component/Utility/DiffArray.php
+75
-0
75 additions, 0 deletions
core/lib/Drupal/Component/Utility/DiffArray.php
core/modules/system/lib/Drupal/system/Tests/Common/DiffArrayUnitTest.php
+89
-0
89 additions, 0 deletions
...stem/lib/Drupal/system/Tests/Common/DiffArrayUnitTest.php
with
164 additions
and
0 deletions
core/lib/Drupal/Component/Utility/DiffArray.php
0 → 100644
+
75
−
0
View file @
afdf1887
<?php
/**
* @file
* Contains Drupal\Component\Utility\DiffArray.
*/
namespace
Drupal\Component\Utility
;
/**
* Provides helpers to perform diffs on multi dimensional arrays.
*/
class
DiffArray
{
/**
* Computes the difference between arrays.
*
* This is just a wrapper around array_diff_assoc(). The only reason Drupal
* provides this function is in since PHP 5.4 casting of arrays to strings
* throws a notice. If you want to use array_diff_assoc() as it was up to PHP
* 5.3, then use this function but consider the consequences -- it should be
* rare to use this function.
*
* @param array $array1
* The array to compare from.
* @param array $array2
* The array to compare to.
*
* @return array
* Returns an array containing all the values from array1 that are not present
* in array2.
*/
public
static
function
diffAssoc
(
array
$array1
,
array
$array2
)
{
return
@
array_diff_assoc
(
$array1
,
$array2
);
}
/**
* Recursively computes the difference of arrays with additional index check.
*
* This is a version of array_diff_assoc() that supports multidimensional
* arrays.
*
* @param array $array1
* The array to compare from.
* @param array $array2
* The array to compare to.
*
* @return array
* Returns an array containing all the values from array1 that are not present
* in array2.
*/
public
static
function
diffAssocRecursive
(
array
$array1
,
array
$array2
)
{
$difference
=
array
();
foreach
(
$array1
as
$key
=>
$value
)
{
if
(
is_array
(
$value
))
{
if
(
!
array_key_exists
(
$key
,
$array2
)
&&
!
is_array
(
$array2
[
$key
]))
{
$difference
[
$key
]
=
$value
;
}
else
{
$new_diff
=
static
::
diffAssocRecursive
(
$value
,
$array2
[
$key
]);
if
(
!
empty
(
$new_diff
))
{
$difference
[
$key
]
=
$new_diff
;
}
}
}
elseif
(
!
array_key_exists
(
$key
,
$array2
)
||
$array2
[
$key
]
!==
$value
)
{
$difference
[
$key
]
=
$value
;
}
}
return
$difference
;
}
}
This diff is collapsed.
Click to expand it.
core/modules/system/lib/Drupal/system/Tests/Common/DiffArrayUnitTest.php
0 → 100644
+
89
−
0
View file @
afdf1887
<?php
/**
* @file
* Contains \Drupal\system\Tests\Common\DiffArrayUnitTest.
*/
namespace
Drupal\system\Tests\Common
;
use
Drupal\Component\Utility\DiffArray
;
use
Drupal\simpletest\UnitTestBase
;
/**
* Tests the DiffArray helper class.
*/
class
DiffArrayUnitTest
extends
UnitTestBase
{
/**
* Array to use for testing.
*
* @var array
*/
protected
$array1
;
/**
* Array to use for testing.
*
* @var array
*/
protected
$array2
;
public
static
function
getInfo
()
{
return
array
(
'name'
=>
'DiffArray functionality'
,
'description'
=>
'Tests the DiffArray helper class.'
,
'group'
=>
'System'
,
);
}
function
setUp
()
{
parent
::
setUp
();
$this
->
array1
=
array
(
'same'
=>
'yes'
,
'different'
=>
'no'
,
'array_empty_diff'
=>
array
(),
'null'
=>
NULL
,
'int_diff'
=>
1
,
'array_diff'
=>
array
(
'same'
=>
'same'
,
'array'
=>
array
(
'same'
=>
'same'
)),
'new'
=>
'new'
,
);
$this
->
array2
=
array
(
'same'
=>
'yes'
,
'different'
=>
'yes'
,
'array_empty_diff'
=>
array
(),
'null'
=>
NULL
,
'int_diff'
=>
'1'
,
'array_diff'
=>
array
(
'same'
=>
'different'
,
'array'
=>
array
(
'same'
=>
'same'
)),
);
}
/**
* Tests DiffArray::diffAssoc().
*/
public
function
testDiffAssoc
()
{
$expected
=
array
(
'different'
=>
'no'
,
'new'
=>
'new'
,
);
$this
->
assertIdentical
(
DiffArray
::
diffAssoc
(
$this
->
array1
,
$this
->
array2
),
$expected
);
}
/**
* Tests DiffArray::diffAssocRecursive().
*/
public
function
testDiffAssocRecursive
()
{
$expected
=
array
(
'different'
=>
'no'
,
'int_diff'
=>
1
,
// The 'array' key should not be returned, as it's the same.
'array_diff'
=>
array
(
'same'
=>
'same'
),
'new'
=>
'new'
,
);
$this
->
assertIdentical
(
DiffArray
::
diffAssocRecursive
(
$this
->
array1
,
$this
->
array2
),
$expected
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment