thinkPHP简单遍历数组方法分析
发布:smiling 来源: PHP粉丝网 添加日期:2021-08-06 09:59:15 浏览: 评论:0
这篇文章主要介绍了thinkPHP简单遍历数组方法,结合实例形式分析了thinkPHP使用volist标签遍历数组的技巧,并对比分析了织梦cms的arclist标签加强对thinkPHP数组遍历的理解,需要的朋友可以参考下。
本文实例分析了thinkPHP简单遍历数组方法,分享给大家供大家参考,具体如下:
有如下数组:
- array(
- array(
- 'id'=>1,
- 'username'=>'mgckid',
- 'sex'=>1
- )
- array(
- 'id'=>2,
- 'username'=>'yezi',
- 'sex'=>0
- )
- )
thinkphp模版标签写法:
- <volist name='data' id='vo'>
- <{$vo.id}>---------<{$vo.username}>-----------<{$vo.sex}><br/>
- </volist>
遍历结果:
1---------mgckid-----------1
2---------yezi-----------0
附上织梦标签写法对比加强理解:
- {dede:arclist typeid='20' row='5' titlelen='40'}
- [field:title/] [field:arcurl/] [field:pubdate/] [field:infos/] [field:writer/]
- {/dede:arclist}
Tags: thinkPHP遍历数组
相关文章
- ·thinkphp数据查询和遍历数组实例(2021-05-01)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)