संपादित करें:सभी नए डेटा के साथ, मैं स्पष्ट रूप से समझता हूं कि आप क्या हासिल करने की कोशिश कर रहे हैं।
इसलिए मैंने अपने पुराने फ़ंक्शन को संपादित किया, यह एक नया है जो आपके कोड में काम करना चाहिए। मुझे बताएं ताकि जरूरत पड़ने पर मैं समायोजित कर सकूं।
public function setCategories($user_id)
{
$api = new ApiCategory($user_id);
$cats = $api->getCategories(); // retrieves structure above
$newCats = null;
self::recursiveCatTree($newCats, $cats);
$this->categories = $newCats;
$this->save(); // save the entire array of embedded documents
if($this->getErrors())
var_dump($this->getErrors);
}
public static function recursiveCatTree(&$result, $parent)
{
$children = $parent['children'];
//we unset the children so we dont have manually set every other variable
unset( $parent['children']);
$result = new Category();
$result->attributes = $parent;
//then loop the children, if no children it wont loop
// so it will just be an empty array
foreach($children as $child)
{
$baby = null;
self::recursiveCatTree($baby, $child);
$result->children[] = $baby;
}
}