摘要: 首先遍历的数组应该先无限极分类一下变成多维数组(无限极分类 多维数组形式:https://www.cnblogs.com/qiyunhai/p/13584997.html) 生成多维数组后执行递归遍历: 1 <?php 2 3 function tree($array, $pid = 0) 4 { 阅读全文
posted @ 2020-08-30 20:05 齐云海 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 以下是本人整理出来的代码: <?php // 测试数组数据 $array = array( array('id'=>'1','title'=>'父级分类1','pid'=>'0'), array('id'=>'2','title'=>'父级分类2','pid'=>'0'), array('id'=> 阅读全文
posted @ 2020-08-30 13:00 齐云海 阅读(902) 评论(0) 推荐(0) 编辑
摘要: <?php // 验证设备为PC还是WAP $agent = $_SERVER['HTTP_USER_AGENT']; if(strpos($agent,"comFront") || strpos($agent,"iPhone") || strpos($agent,"MIDP-2.0") || st 阅读全文
posted @ 2020-08-30 12:51 齐云海 阅读(245) 评论(1) 推荐(0) 编辑