欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用递归函数遍历省市区数组

程序员文章站 2022-03-24 09:36:42
...

使用递归函数遍历省市区数组

数组保存在area.php文件中。

  1. include "area.php"; //导入文件
  2. //调用函数
  3. putout($arr);
  4. //声明递归函数
  5. function putout($arr){
  6. foreach($arr as $item){
  7. echo $item['area_name']." ";
  8. if(isset($item['son'])){
  9. echo "<br>";
  10. //递归调用函数
  11. putout($item['son']);
  12. echo "<br>";
  13. }
  14. if($item['area_pid']==0){
  15. echo "<hr>";
  16. }
  17. }
  18. }
  • 运行效果
    使用递归函数遍历省市区数组