Home> php教程> php手册> body text

Multidimensional array to one-dimensional array

WBOY
Release: 2016-11-19 13:05:23
Original
1208 people have browsed it

Code to facilitate some data processing

//Multiple dimensions become one dimension
function arr_foreach ($arr)
{
static $tmp=array();
If (!is_array ($arr))
{
return false; }
foreach ($arr as $val)
{
if (is_array ($val))
{
arr_foreach ($val);
}
else
{
$tmp[]=$val;
}
}
return }

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!