Maison  >  Article  >  développement back-end  >  php 数组 深度遍历 php7 php环境搭建 php从入门到精通

php 数组 深度遍历 php7 php环境搭建 php从入门到精通

WBOY
WBOYoriginal
2016-07-29 08:54:14962parcourir

 

//数组深度遍历

function testFunc($array){

foreach ($array as $value){

if (is_array($value)) {

testFunc($value);

} else {

echo $value."
"
;

}

}

}

//开始测试数据

$testarr = array(

1,

array(

6,

array(

16,

17,

18

),

8,

9,

array(

19,

array(

25,

26,

27

)

)

),

3,

4,

array(

11,

array(

21,

22,

23

),

13,

14,

array(

24,

array(

28,

29,

30

)

)

)

);

testFunc($testarr);

?>

以上就介绍了php 数组 深度遍历,包括了php方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn