帝国cms程序中,通过自定义的函数去获取新闻文章数量的代码分享:
帝国cms中添加用户自定义函数。
就是在e/class/userfun.php文件中加下如下函数即可:
1,核心函数内容:
复制代码 代码如下:
<?php
function get_newstotal($userid){
global $empire,$class_r,$dbtbpre;
$query="select count(*) as total from {$dbtbpre}ecms_news WHERE userid=".$userid." "; // sql语句
$num=$empire->gettotal($query);
echo $num;
}
?>
2,将函数内容复制到e/class/userfun.php文件中。
3,登陆后台->“模板管理”->“管理标签”->“增加标签”。
4,调用[newstotal]用户ID[/newstotal]。
如此,便实现了帝国cms中用户自定义函数调用新闻数量了,很简单吧。
本文地址:http://www.45fan.com/bcdm/9772.html