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 ?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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));
?>

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.