简体   繁体   中英

multidimensional array from comma separated string

im trying to convert a comma separated into a multidimensional array to create a menu structure of this.

this is what i have already..

        for ($i=0; $i < $count; $i++) {
                if($i > 0){
                    array_push($tagmenu[0][$pretags[$i-1]], array($pretags[$i]=>array()));
                } else {
                    array_push($tagmenu, array($pretags[$i]=>array()));
                }

            }

i have this as a string

$tags = 'image,landscape,night';

and i want it to look like this

Array(
      [images] = Array (
                 [landscape] = Array(
                               [night] = Array ()
                 )
      )

i'm searching my fingers off on this

$tags = 'image,landscape,night';
$newArray = array();
$wrkArray = &$newArray;

foreach(explode(',',$tags) as $tag) {
    $wrkArray[$tag] = array();
    $wrkArray = &$wrkArray[$tag];
}
unset($wrkArray);
var_dump($newArray);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM