Heim  >  Artikel  >  Backend-Entwicklung  >  将一维或多维的数组连接成一个字符串的php代码_PHP教程

将一维或多维的数组连接成一个字符串的php代码_PHP教程

WBOY
WBOYOriginal
2016-07-21 15:35:111159Durchsuche

复制代码 代码如下:

/*
* ————————————————-
* @file : 5.php
* @function : arr2str
* @copyright : 2002-2009 Xingmo Inc
* @author : Fanglor
* @date : 2010-06-25
* @update :
* ————————————————-
*/
$fruits = array (
"fruits" => array("a" => "orange", "b" => "banana", "c" => "apple"),
"numbers" => array(1, 2, 3, 4, 5, 6),
"holes" => array("first", 5 => "second", "third")
);
$arr1 = array(1, 2, 3, 4, 5, 6=>'fanglor');
function arr2str ($arr)
{
static $res_arr = array();
if (is_array ($arr))
{
foreach ($arr as $key => $val )
{
if (is_array($val))
{
arr2str ($val);
}
else
{
$res_arr[] = $val;
}
}
}
elseif (is_string ($arr))
{
$res_arr[] = $arr;
}
return implode(',',$res_arr);
}
$str = arr2str ($arr1);
print_r ($str);
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/322304.htmlTechArticle复制代码 代码如下: /* * ————————————————- * @file : 5.php * @function : arr2str * @copyright : 2002-2009 Xingmo Inc * @author : Fanglor fang...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn