What is the best way to check if an array is recursive in PHP ?
Given the following code:
Many of the solutions you will find on SO are broken (see explanation below). The function I propose works for all arrays and is much more efficient than print_r
:
function is_cyclic(&$array) {
$isRecursive = false;
set_error_handler(function ($errno, $errstr) use (&$isRecursive) {
$isRecursive = $errno === E_WARNING && mb_stripos($errstr, 'recursion');
});
try {
count($array, COUNT_RECURSIVE);
} finally {
restore_error_handler();
}
return $isRecursive;
}
The count
function takes a second parameter $mode
that can be set to the constant COUNT_RECURSIVE
to count recursively (see docs). If a recursive array gets passed to count
, it will emit a warning that we can trap and check. I have written more about this solution on my blog. Tests and benchmarks are on github.
Any implementation that adds markers to arrays and then later checks for the presence of these markers does not work for all inputs. Specifically, they fail to detect recursion in some cases where the arrays have previously been assigned by value (e.g. returned by a function). This is due to the way PHP handles value assignments of arrays, as described in chapter 4 of the PHP Language Specification. I have written more extensively about this on my blog.
The following function is simpler[opinion] than the code in the accepted answer, and seems to work for any use case that I have been able to contrive. It also seems to be surprisingly fast, typically taking microseconds, though I have not done extensive benchmarking. If there is a problem with it, I would be grateful if somebody could point it out?
// returns TRUE iff the passed object or array contains
// a self-referencing object or array
function is_r($obj, &$visited=array())
{
$visited[] = $obj;
foreach ($obj as $el)
{
if (is_object($el) || is_array($el))
{
if (in_array($el, $visited, TRUE))
return TRUE;
if (is_r($el, $visited))
return TRUE;
}
}
return FALSE;
}
I believe you can't check that. Read the ReferenceDoc for more information on reference.
Here is the function to check for RECURSION (from PHP doc comments), altough it seems to be very slow (I would not suggest it):
function is_array_reference ($arr, $key) {
$isRef = false;
ob_start();
var_dump($arr);
if (strpos(preg_replace("/[ \n\r]*/i", "", preg_replace("/( ){4,}.*(\n\r)*/i", "", ob_get_contents())), "[" . $key . "]=>&") !== false)
$isRef = true;
ob_end_clean();
return $isRef;
}
It's always fun to try solving "impossible" problems!
Here's a function that will detect recursive arrays if the recursion happens at the top level:
function is_recursive(array &$array) {
static $uniqueObject;
if (!$uniqueObject) {
$uniqueObject = new stdClass;
}
foreach ($array as &$item) {
if (!is_array($item)) {
continue;
}
$item[] = $uniqueObject;
$isRecursive = end($array) === $uniqueObject;
array_pop($item);
if ($isRecursive) {
return true;
}
}
return false;
}
See it in action.
Detecting recursion at any level would obviously be more tricky, but I think we can agree that it seems doable.
And here is the recursive (pun not intended but enjoyable nonetheless) solution that detects recursion at any level:
function is_recursive(array &$array, array &$alreadySeen = array()) {
static $uniqueObject;
if (!$uniqueObject) {
$uniqueObject = new stdClass;
}
$alreadySeen[] = &$array;
foreach ($array as &$item) {
if (!is_array($item)) {
continue;
}
$item[] = $uniqueObject;
$recursionDetected = false;
foreach ($alreadySeen as $candidate) {
if (end($candidate) === $uniqueObject) {
$recursionDetected = true;
break;
}
}
array_pop($item);
if ($recursionDetected || is_recursive($item, $alreadySeen)) {
return true;
}
}
return false;
}
See it in action.
Of course this can also be written to work with iteration instead of recursion by keeping a stack manually, which would help in cases where a very large recursion level is a problem.
I've dug into this in depth some time ago, and I was unable to find any useful mechanism for detecting recursion in PHP arrays.
The question boils down to whether it's possible to tell whether two PHP variables are references to the same thing.
If you're working with objects rather than arrays (or even objects within your arrays), then it is possible, as one can find out whether two objects are the same reference using spl_object_hash()
. So if you have objects in your structure, then you can detect recursion by traversing up the tree and comparing the objects.
However for regular variables -- ie non-objects -- it isn't possible to detect this easily using standard PHP.
The work arounds are to use print_r()
(as you already know) or var_dump()
, but neither of these are particularly elegant solutions.
There is also a function provided by xDebug which can help, xdebug_debug_zval()
, but that's obviously only available if you've got xDebug installed, which isn't recommended on a production system.
Further advice and suggestions available here.