摘要: 使用递归方法,遍历子类,对数据进行重新排序,使用level进行无限级分类 阅读全文
posted @ 2017-11-25 15:11 huohuohiahia 阅读(2315) 评论(0) 推荐(0) 编辑
摘要: 我们知道,PHP没有提供专门删除一个特定数组元素的方法。但是可以通过unset()函数来完成这种要求,比如下面的程序: <?php $arr = array('apple','banana','cat','dog'); unset($arr[2]); print_r($arr); ?> 程序运行结果 阅读全文
posted @ 2017-11-25 14:21 huohuohiahia 阅读(9193) 评论(0) 推荐(0) 编辑