php语言 百分网手机站

thinkPHP简单遍历数组方法分析

时间:2020-08-05 14:57:22 php语言 我要投稿

thinkPHP简单遍历数组方法分析

  文章主要介绍了thinkPHP简单遍历数组方法,结合实例形式分析了thinkPHP使用volist标签遍历数组的'技巧,并对比分析了织梦cms的arclist标签加强对thinkPHP数组遍历的理解,需要的朋友可以参考下。

  本文实例分析了thinkPHP简单遍历数组方法。分享给大家供大家参考,具体如下:

  有如下数组:

  ?

  1

  2

  3

  4

  5

  6

  7

  8

  9

  10

  11

  12

  array(

  array(

  'id'=>1,

  'username'=>'mgckid',

  'sex'=>1

  )

  array(

  'id'=>2,

  'username'=>'yezi',

  'sex'=>0

  )

  )

  thinkphp模版标签写法:

  ?

  1

  2

  3

  <volist name='data' id='vo'>

  <{$vo.id}>---------<{$vo.username}>-----------<{$vo.sex}><br/>

  </volist>

  遍历结果:

  ?

  1

  2

  1---------mgckid-----------1

  2---------yezi-----------0

  附上织梦标签写法对比加强理解:

  ?

  1

  2

  3