全国400电话网上服务平台
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
拓展channel标签实现limit功能
POST TIME:2017-10-25 10:36
由于网站栏目多次需要调用同一栏目下的栏目比如顶级栏目6 下级栏目5.4.3.2.1 需要分两次分别调出543和21 感觉channel就比较吃力了全部写SQL又太多,可能是我还不知道有其他方法吧。row调用不出这种效果所以就把row改为了Limit用法了比较方便 修改文件include\taglib/下面的channel.lib.php 在函数lib_channel里面加上
//limit条件
$limit = trim(eregi_replace('limit','',$limit));
if($limit!='') $limitsql = " limit $limit ";
else $limitsql = " limit 0,7 ";
$orwhere = '';
if(isset($orwheres[0])) {
$orwhere = join(' And ',$orwheres);
$orwhere = ereg_replace("^ And",'',$orwhere);
$orwhere = ereg_replace("And[ ]{1,}And",'And ',$orwhere);
}
if($orwhere!='') $orwhere = " where $orwhere ";//二次开发
--------------------------------------------------------------------------------
把上面的代码,添加到函数lib_channel(具体位置为:)
function lib_channel(&$ctag,&$refObj)
{
global $dsql;
$attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,cacheid|";
FillAttsDefault($ctag->CAttribute->Items,$attlist);
extract($ctag->CAttribute->Items, EXTR_SKIP);
$innertext = $ctag->GetInnerText();
$line = empty($row) ? 100 : $row;
----------------------------------------------------------
这段代码后面
所有查询条件的limit 0,$row改为$limitsql OK 保存
//limit条件
$limit = trim(eregi_replace('limit','',$limit));
if($limit!='') $limitsql = " limit $limit ";
else $limitsql = " limit 0,7 ";
$orwhere = '';
if(isset($orwheres[0])) {
$orwhere = join(' And ',$orwheres);
$orwhere = ereg_replace("^ And",'',$orwhere);
$orwhere = ereg_replace("And[ ]{1,}And",'And ',$orwhere);
}
if($orwhere!='') $orwhere = " where $orwhere ";//二次开发
--------------------------------------------------------------------------------
把上面的代码,添加到函数lib_channel(具体位置为:)
function lib_channel(&$ctag,&$refObj)
{
global $dsql;
$attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,cacheid|";
FillAttsDefault($ctag->CAttribute->Items,$attlist);
extract($ctag->CAttribute->Items, EXTR_SKIP);
$innertext = $ctag->GetInnerText();
$line = empty($row) ? 100 : $row;
----------------------------------------------------------
这段代码后面
所有查询条件的limit 0,$row改为$limitsql OK 保存
Copyright © 2003-2016
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278