PHP Arrays, appending depth of array item recursively to an array with the key of 'depth' - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T23:52:28Zhttp://stackoverflow.com/feeds/question/435180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of1PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'youdontmeanmuch2009-01-12T11:35:15Z2009-01-12T13:20:02Z
<p>Per the example array at the very bottom, i want to be able to append the depth of each embedded array inside of the array. for example:</p>
<pre>
array (
53 =>
array (
'title' => 'Home',
'path' => '',
'type' => '118',
'pid' => 52,
'hasChildren' => 0,
),
</pre>
<p>Has a depth of one according to the sample array shown below so it should now look like this:</p>
<pre>
array (
53 =>
array (
'title' => 'Home',
'path' => '',
'type' => '118',
'pid' => 52,
'hasChildren' => 0,
'depth' => 1,
),
</pre>
<p>and so on...</p>
<p>All of the recursive array function attempts i have made are pretty embarrassing. However I have looked at RecursiveArrayIterator which has the getDepth function. I'm confused on how to append it to the current array... any help is VERY much appreciated, thank you.</p>
<pre>
array (
'title' => 'Website Navigation',
'path' => '',
'type' => '115',
'pid' => 0,
'hasChildren' => 1,
'children' =>
array (
53 =>
array (
'title' => 'Home',
'path' => '',
'type' => '118',
'pid' => 52,
'hasChildren' => 0,
),
54 =>
array (
'title' => 'Features',
'path' => 'features',
'type' => '374',
'pid' => 52,
'hasChildren' => 1,
'children' =>
array (
59 =>
array (
'title' => 'artistic',
'path' => 'features/artistic',
'type' => '374',
'pid' => 54,
'hasChildren' => 1,
'children' =>
array (
63 =>
array (
'title' => 'galleries',
'path' => 'features/artistic/galleries',
'type' => '374',
'pid' => 59,
'hasChildren' => 1,
'children' =>
array (
65 =>
array (
'title' => 'graphics',
'path' => 'features/artistic/galleries/graphics',
'type' => '118',
'pid' => 63,
'hasChildren' => 0,
),
67 =>
array (
'title' => 'mixed medium',
'path' => 'features/artistic/galleries/mixed-medium',
'type' => '118',
'pid' => 63,
'hasChildren' => 0,
),
64 =>
array (
'title' => 'overview',
'path' => 'features/artistic/galleries',
'type' => '118',
'pid' => 63,
'hasChildren' => 0,
),
68 =>
array (
'title' => 'photography',
'path' => 'features/artistic/galleries/photography',
'type' => '118',
'pid' => 63,
'hasChildren' => 0,
),
66 =>
array (
'title' => 'traditional',
'path' => 'features/artistic/galleries/traditional',
'type' => '118',
'pid' => 63,
'hasChildren' => 0,
),
),
),
62 =>
array (
'title' => 'overview',
'path' => 'features/artistic',
'type' => '118',
'pid' => 59,
'hasChildren' => 0,
),
69 =>
array (
'title' => 'tutorials',
'path' => 'features/artistic/tutorials',
'type' => '374',
'pid' => 59,
'hasChildren' => 1,
'children' =>
array (
71 =>
array (
'title' => 'by category',
'path' => 'features/artistic/tutorials/by-category/',
'type' => '118',
'pid' => 69,
'hasChildren' => 0,
),
72 =>
array (
'title' => 'by date',
'path' => 'features/artistic/tutorials/by-date/',
'type' => '118',
'pid' => 69,
'hasChildren' => 0,
),
70 =>
array (
'title' => 'overview',
'path' => 'features/artistic/tutorials',
'type' => '118',
'pid' => 69,
'hasChildren' => 0,
),
),
),
),
),
58 =>
array (
'title' => 'overview',
'path' => 'features',
'type' => '118',
'pid' => 54,
'hasChildren' => 0,
),
61 =>
array (
'title' => 'projects / labs',
'path' => 'features/projects-labs/',
'type' => '374',
'pid' => 54,
'hasChildren' => 0,
),
60 =>
array (
'title' => 'web development',
'path' => 'features/web-development',
'type' => '374',
'pid' => 54,
'hasChildren' => 1,
'children' =>
array (
74 =>
array (
'title' => 'articles',
'path' => 'features/web-development/articles/',
'type' => '374',
'pid' => 60,
'hasChildren' => 0,
),
73 =>
array (
'title' => 'overview',
'path' => 'features/web-development',
'type' => '118',
'pid' => 60,
'hasChildren' => 0,
),
75 =>
array (
'title' => 'tutorials',
'path' => 'features/web-development/tutorials',
'type' => '374',
'pid' => 60,
'hasChildren' => 0,
),
),
),
),
),
55 =>
array (
'title' => 'Activity',
'path' => 'activity',
'type' => '374',
'pid' => 52,
'hasChildren' => 0,
),
56 =>
array (
'title' => 'Blog',
'path' => 'blog',
'type' => '374',
'pid' => 52,
'hasChildren' => 0,
),
57 =>
array (
'title' => 'About',
'path' => 'about',
'type' => '374',
'pid' => 52,
'hasChildren' => 1,
'children' =>
array (
76 =>
array (
'title' => 'the author',
'path' => 'about/the-author',
'type' => '118',
'pid' => 57,
'hasChildren' => 0,
),
77 =>
array (
'title' => 'the website',
'path' => 'about/the-website',
'type' => '118',
'pid' => 57,
'hasChildren' => 0,
),
),
),
),
),
);
print_r($example);
?>
</pre>
http://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of/435194#4351943Answer by Paul Dixon for PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'Paul Dixon2009-01-12T11:42:50Z2009-01-12T11:54:48Z<p>A recursive function like this should do it?</p>
<pre><code>function setDepth(&$a, $depth)
{
$a['depth']=$depth;
foreach($a as $key=>$value)
{
if (is_array($value))
setDepth($a[$key], $depth+1);
}
}
</code></pre>
<p>The thing to note is that the array is passed by reference, so that we can modify it. Note that we also use this reference in the recursive call to setDepth. Although I used foreach for convenience, the $value variable is a copy, and passing that to setDepth would only make short lived changes within the scope of the foreach loop.</p>
http://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of/435212#4352120Answer by empi for PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'empi2009-01-12T11:56:20Z2009-01-12T11:56:20Z<p>sth like this should do the trick:</p>
<pre><code>function setdepth($arr, $depth = 0)
{
foreach ($arr as $key => $val)
{
$arr[$key]['depth'] = $depth;
if ($arr[$key]['hasChildren'])
{
setdepth(&$arr[$key]['children'], $depth+1);
}
}
}
</code></pre>
<p>i would be easier if your array started with index not with values, so example usage could be like this:</p>
<pre><code>$arr[0] = $website;
setdepth(&$arr, 0);
</code></pre>
<p>where website is the array from your example</p>
http://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of/435230#4352301Answer by OIS for PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'OIS2009-01-12T12:06:49Z2009-01-12T12:25:22Z<p>I assume there is another array( at the top not included in your example code.
Something like this?</p>
<pre><code>function array_set_depth($array, $depth = -1)
{
$subdepth = $depth + 1;
if ($depth < 0) {
foreach ($array as $key => $subarray) {
$temp[$key] = array_set_depth(($subarray), $subdepth);
}
}
if ($array['hasChildren'] && isset($array['children'])) {
foreach ($array['children'] as $key => $subarray) {
$temp[$key] = array_set_depth($subarray, $subdepth);
}
$array['children'] = $temp;
}
$array['depth'] = $depth;
return $array;
}
</code></pre>
<p>Example usage, I set your array to the value $a:</p>
<pre><code>$b = array_set_depth($a);
print_r($b);
</code></pre>
<p>Edit: </p>
<p>To set depth before the children for nice printing you can do this:</p>
<pre><code>function array_set_depth($array, $depth = -1)
{
$subdepth = $depth + 1;
if ($depth < 0) {
foreach ($array as $key => $subarray) {
$temp[$key] = array_set_depth(($subarray), $subdepth);
}
return $temp;
}
$array['depth'] = $depth;
if ($array['hasChildren'] && isset($array['children'])) {
foreach ($array['children'] as $key => $subarray) {
$temp[$key] = array_set_depth($subarray, $subdepth);
}
unset($array['children']);
$array['children'] = $temp;
}
return $array;
}
</code></pre>
http://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of/435247#4352470Answer by youdontmeanmuch for PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'youdontmeanmuch2009-01-12T12:16:26Z2009-01-12T12:16:26Z<p>OIS thats close... holy crap you guys are good. But if you try it out on my sample array there [54],[59], etc... have no depth where they should. looks like depth is only being applied to items with no children the depth should be applied to all the items whether they have children or not.</p>
http://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of/435253#4352530Answer by youdontmeanmuch for PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'youdontmeanmuch2009-01-12T12:17:52Z2009-01-12T12:17:52Z<p>empi, i'm not able to get that code to work on the sample array</p>
http://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of/435289#4352890Answer by youdontmeanmuch for PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'youdontmeanmuch2009-01-12T12:33:02Z2009-01-12T12:33:02Z<p>outstanding, thanks OIS.</p>
http://stackoverflow.com/questions/435180/php-arrays-appending-depth-of-array-item-recursively-to-an-array-with-the-key-of/435383#4353831Answer by OIS for PHP Arrays, appending depth of array item recursively to an array with the key of 'depth'OIS2009-01-12T13:20:02Z2009-01-12T13:20:02Z<p>Modified Pauls code to work with this example.</p>
<pre><code>function setDepth(&$a, $depth = -1)
{
if (($depth > -1) && !($depth % 2))
$a['depth']= $depth / 2;
foreach($a as $key=>$value)
{
if (is_array($value))
setDepth($a[$key], $depth+1);
}
}
setDepth($a);
print_r($a);
</code></pre>