首页 > 网站 > 建站经验 > 正文

dedecms统计栏目文章数量实现代码修订版

2019-11-02 17:00:50
字体:
来源:转载
供稿:网友
修改include/inc_functions.php文件

复制代码 代码如下:

function GetTotalArc($typeid){ 

  $dsql = new DedeSql(false); 

                if(!empty($typeid)) 

                { 

                  $reids = explode(",",$typeid); 

                  $ridnum = count($reids); 

                  if($ridnum>1){ 

                          $tpsql = ""; 

                    for($i=0;$i<$ridnum;$i++){ 

                                  if($tpsql=="") $tpsql .= " And (".TypeGetSunID($reids[$i],$dsql,''); 

                                  else $tpsql .= " Or ".TypeGetSunID($reids[$i],$dsql,''); 

                    } 

                    $tpsql .= ") "; 

                    $orwhere .= $tpsql; 

                    unset($tpsql); 

                  }else{ 

                          $orwhere .= " And ".TypeGetSunID($typeid,$dsql,''); 

                  } 

                  unset($reids); 

          } 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表