gpt4 book ai didi

php - CodeIgniter 和 Smarty

转载 作者:行者123 更新时间:2023-12-04 06:03:26 25 4
gpt4 key购买 nike

我有关联数组:

模型

public function selectArticle(){
$sql = $this->db->query("SELECT * FROM articles");
return $sql->result_array();
}

Controller
public function index(){  
$data['articles'] = $this->article->selectArticle();
$this->parser->parse('index.tpl', $data);

}

模板
{foreach from = $articles item = $article}  
<tr>
<td width="30%">{$article.title}</td>
<td width="30%">
<a href="{$article.link}" target="_blank">http://example.net</a>
</td>
<td width="20%">{$article.size}</td>
<td width="20%">{$article.count}</td>
</tr>
{/foreach}

如何在模板中获取文件?
现在:article.fild - 不工作

最佳答案

删除 $文章 ,必须使用文章

{foreach from=$articles item=$article}



试试这个代码:
{foreach from=$articles item=article}
<tr>
<td width="30%">{$article.title}</td>
<td width="30%"><a href="{$article.link}" target="_blank">http://example.net</a></td>
<td width="20%">{$article.size}</td>
<td width="20%">{$article.count}</td>
</tr>
{/foreach}

关于php - CodeIgniter 和 Smarty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8669989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com