php数组遍历类与用法示例
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-23 10:49:31 浏览: 评论:0
这篇文章主要介绍了php数组遍历类与用法,结合实例形式分析了php基于面向对象的数组遍历、读取操作封装与使用技巧,需要的朋友可以参考下。
本文实例讲述了php数组遍历类与用法,分享给大家供大家参考,具体如下:
- <?php
- class scanArray{
- public $arr;
- public $where;
- private $str;
- public function scan($arr,$where="array"){
- $this->arr = $arr;
- $this->where = $where;
- foreach($this->arr as $k=>$v){
- if(is_array($v)){
- $this->where = ($this->where)."[{$k}]";
- $this->scan($v,$this->where);
- }else{
- $this->str .= $this->where."[{$k}]=".$v.'<br />';
- }
- }
- return $this->str;
- }
- function __destruct(){
- unset($this->arr);
- unset($this->where);
- }
- }
- $a = array('g'=>"a",'vv'=>array("b"=>"b","l"=>"c","xx"=>array("e","g")));
- $ah = new scanArray();
- $b = $ah->scan($a);
- echo $b;
运行结果:
- array[g]=a
- array[vv][b]=b
- array[vv][l]=c
- array[vv][xx][0]=e
- array[vv][xx][1]=g
Tags: php数组遍历类
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)