dongya1228 2014-03-15 00:24
浏览 52
已采纳

在Codeigniter视图中使用变量作为数组名称

I passed $data array to view. $data array is like:

$data = array('t0' => array('point' => 0), 't1' => array('point' => 2) .... );

What I am trying to do is using this array in my view as follows:

<?php echo $t0['point']; ?> //It works!

But I am doing this in a for loop by definition of structure. Therefore I need to pass numeric value(near 't' letter) as a variable. How can I achieve this?

  • 写回答

3条回答 默认 最新

  • douwen1313 2014-03-15 00:48
    关注

    you can do like this:

    $count = count($data);   //if you know the count of $data
     for($i = 0; $i < $count; $i++) {
            $var = 't'.$i;
            echo ${$var}['point'];
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作