Jump to content

Multi Level Array Problem


receiver19

Recommended Posts

hi all,

 

For example I have array like below:

 

$temp = array(array('north america', 'us', 'california'), array('north america', 'us', 'hawaii'), array('north america', 'canada', 'vancouver'), array('asia', 'singapore', 'orchard');

 

I need to filter it out. So i hope the result could be:

 

array

  'north america' =>

    array

      'us' =>

          array 0 =>string 'california'

                  1 =>string 'hawai'

  'asia' =>

    array

      'singapore'

            array 0 => string 'orchard'

 

 

 

Anyone could help me to sorf out the logic? I just cannot solve this question.

 

Thanks a lot!

Link to comment
Share on other sites

Are you saying you wish your array to look like your ouput example, or are you saying you wish to programmatically convert example code a.) into example output b.). If the former your array should be...

 

$places = array('north_america'=>array('us'=>array('california', 'hawai')),'asia'=>array('singapore'=>'orchard'));

 

...if the latter then let us know.

Link to comment
Share on other sites

try

<?php
$temp = array(array('north america', 'us', 'california'), array('north america', 'us', 'hawaii'), array('north america', 'canada', 'vancouver'), array('asia', 'singapore', 'orchard'));
$out = array();
foreach ($temp as $t) $out[$t[0]][$t[1]][] = $t[2];
print_r($out);
?>

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.