Jump to content

[SOLVED] how to make a multidimensional array flat


madrazel

Recommended Posts

example:

Array
(
    [0] => Array
        (
            [0] => /styles/site.css
            [1] => /styles/mirror.css
        )

    [1] => Array
        (
            [0] => /styles/print.css
        )

)

 

i want it to be:

 

Array
(
    [0] => /styles/site.css
    [1] => /styles/mirror.css
    [2] => /styles/print.css
)

 

is there a build-in function for this ?

Not that I know of.

 

<?php

$array = array(array("/styles/site.css", "/styles/mirror.css"), array("/styles/print.css"));
$newarray = array();

foreach($array as $key => $value) {
foreach($value as $key2 => $value2) {
  $newarray[] = $value2;
}
}

?>

 

I think that would work...

i JUST made this... enjoy :-)

 

<?php
function array_flatten($array){
$out=array();
foreach($array as $k=>$v){
  if(is_array($array[$k])){
   $out=array_merge($out,array_flatten($array[$k]));
  }else{
   $out[]=$v;
  }
}
return $out;
}
$array[]=array('test','test2');
$array[]='test5';
$array[][]='test3';
$array[][][]='test4';
print_r(array_flatten($array));
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.