PHP code that joins a one-dimensional or multidimensional array into a string of PHP code

Source: Internet
Author: User
Copy CodeThe code is as follows:


/*
* ————————————————-
* @file: 5.php
* @function: Arr2str
* @copyright: 2002-2009 Xingmo INC
* @author: Fanglor
* @date: 2010-06-25
* @update:
* ————————————————-
*/
$fruits = Array (
"Fruits" = Array ("A" and "Orange", "B" and "Banana", "c" = "apple"),
"Numbers" = = Array (1, 2, 3, 4, 5, 6),
"holes" = = Array ("First", 5 = "Second", "third")
);
$arr 1 = 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 ($arr 1);
Print_r ($STR);
?>

The above describes the PHP code to concatenate a one-dimensional or multidimensional array into a string of PHP code, including the contents of the PHP code, I hope to be interested in PHP tutorial friends helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.