开发者

php explode on two dimensional array

I have a two dimensional array in php and I want to get the second dimension (index 1) as a list of values seperated by a comma. Do I have to write my own custom functions or can I use some variation of explode on two dimens开发者_Go百科ional arrays?


Depending on how your array is organized, you could do

x = implode(',',$two_dimensional_array['index1']);


First of all, your are looking for implode() and not for explode().

function flatten($two_dim_array)
{
     $result = array();
     foreach ($two_dim_array as $array)
          $result[] = implode("," $array);
     return $result;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜