如何在smarty中增加类似foreach的功能自动加载数据

前端之家收集整理的这篇文章主要介绍了如何在smarty中增加类似foreach的功能自动加载数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在smarty中使用自定义插件来加载数据(见:编写Smarty插件在模板中直接加载数据的详细介绍),在使用的时候还是感觉不够方便,灵机一动就想写成类似foreach那种标签

第一步:在Smarty_Compiler.class.PHP的_compile_tag函数增加

<div class="codetitle"><a style="CURSOR: pointer" data="16572" class="copybut" id="copybut16572" onclick="doCopy('code16572')"> 代码如下:
<div class="codebody" id="code16572">
//加载数据的开始标签
case 'load':
$this->_push_tag('load');
return $this->_complie_load_start($tag_args);
break;
//加载数据的结束标签
case '/load':
$this->_pop_tag('load');
return "<?php endforeach; endif; unset(/$_from); ?>";
break;

第二步:增加一个方法

<div class="codetitle"><a style="CURSOR: pointer" data="8286" class="copybut" id="copybut8286" onclick="doCopy('code8286')"> 代码如下:
<div class="codebody" id="code8286">
/*
加载数据
@param $tag_args
/
function _complie_load_start($tag_args)
{
$key = substr(md5($tag_args),8,16); //根据参数生成一个特殊的变量名
$attrs = $this->_parse_attrs($tag_args);
//这里可以增加更多的处理
$class = (!isset($attrs['class']) || empty($attrs['class'])) ? 'cls_crud' : trim($attrs['class']);
(!isset($attrs['table']) || empty($attrs['table'])) && exit('table is empty!');
$db = $class::factory(array('table' => substr($attrs['table'],1,-1)));
//定义新变量
$this->_tpl_vars[$key] = $db->get_block_list(array(substr($attrs['where'],-1)),$attrs['limit']);
$tag_args = "from=/${$key} " . $tag_args;//调用foreach标签处理函数进行处理
return $this->_compile_foreach_start($tag_args);
}

这样就可以在模板中使用load这个标签了。用法例如:
<div class="codetitle"><a style="CURSOR: pointer" data="86259" class="copybut" id="copybut86259" onclick="doCopy('code86259')"> 代码如下:
<div class="codebody" id="code86259">
{load table="test" where="id<100" limit=10 item=rec}
...
{/load}

原文链接:https://www.f2er.com/php/25995.html
foreachforeachforeach自动加载数据

猜你在找的PHP相关文章