Jump to content

[SOLVED] "Pointers?" - reference in array to itself


phant0m

Recommended Posts

Hello

 

I've got an array which basically represents a hierarchy of nodes. Each node can have children of its own.

Now, for easier access, I wanted to reference the parent node inside the child node, unfortunately it doesn't seem to work.

 

Simplified code:

<?php
foreach($parent['children'] as &$child){
  $child['parent'] = &$parent;
}

?>

Link to comment
Share on other sites

works for me:

 

<pre>
<?php
$parent = array(
  'name' => 'I am the parent',
  'children' => array(
    array(
      'name' => 'I am the first child',
    ),
    array(
      'name' => 'I am the second child',
    ),
    array(
      'name' => 'I am the third child',
    ),
  ),
);

foreach($parent['children'] as &$child){
  $child['parent'] = &$parent;
}

print $parent['children'][1]['parent']['name'];
print_r($parent);

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.