zoukankan      html  css  js  c++  java
  • 调用全站点击率最高的文章

    通常我都是遇到什么问题,就去找方法解决问题,然后传播一下。今天遇到的是调用phpcms v9全站点击率最高的文章。

     第一种方法

    此问题需要添加一个标签,找到phpcms/modules/content/classes/content_tag.class.php,可以在最后添加这个function。



    function sitehits($data){
    if(empty($data['siteid'])) $data['siteid']=1;
    $siteid = intval($data['siteid']);
    $this->hits_db = pc_base::load_model('hits_model');
    $category_content = getcache('category_content','commons');
    $catid = '';
    //获取站点下所有栏目ID
    foreach($category_content as $key=>$val){
    if($val==$siteid){
    $catid .= $comma.$key;
    $comma=',';
    }
    }
    $sql='catid in('.$catid.')';
    if(isset($data['day'])) {
    $updatetime = SYS_TIME-intval($data['day'])*86400;
    $sql .= " AND updatetime>'$updatetime'";
    }
    //获取点击排行
    $r = $this->hits_db->select($sql,'hitsid',$data['limit'],$data['order']);
    $return = array();
    $sitemodel_model_db = pc_base::load_model('sitemodel_model');
    $this->db_config = pc_base::load_config('database');
    $tablepre = $this->db_config['default']['tablepre'];
    foreach($r as $key){
    preg_match_all('/-(d+)-/',$key['hitsid'],$modelid);
    $id = substr($key['hitsid'],(strpos($key['hitsid'],'-',2)+1));
    $tablename = $sitemodel_model_db->get_one(array('modelid'=>$modelid[1][0]),'tablename');
    $this->db->table_name = $tablepre.$tablename['tablename'];
    $return[] = array_merge($return,$this->db->get_one(array('id'=>$id)));
    }
    return $return;
    }

    这样就好了,下面看看调用的代码吧


    {pc:content action="sitehits" siteid="1" num="10" day="7" order="views DESC" cache="3600"}
    {loop $dat

  • 相关阅读:
    zoj 2876 Phone List
    zoj 2829 Beautiful Number
    zoj 2723 Semi-Prime(set)
    zoj 2835 Magic Square(set)
    zoj 2818 Root of the Problem
    zoj 2744 Palindromes
    zoj 1109 Language of FatMouse(map)
    zoj 2724 Windows Message Queue
    zoj 2722 Head-to-Head Match(两两比赛)
    zoj 2727 List the Books
  • 原文地址:https://www.cnblogs.com/MY0101/p/6288805.html
Copyright © 2011-2022 走看看