• tp5文章浏览量添加,开发浏览量


    每次刷新都会增加+1,数据库表字段‘pv’;

    tp5插入浏览量语句:

        //新闻详情
        public function detail()
        {
            $id = input('id');
            //插入浏览量
            Db::table('wz_news_article')->where('id',$id)->setInc('pv');
      
        }
    

      新闻详情全部代码::::

        //新闻详情
        public function detail()
        {
            $id = input('id');
            $InfoDetail = Db::table('wz_news_article')->where('id',$id)->find();
            //插入浏览量
            Db::table('wz_news_article')->where('id',$id)->setInc('pv');
            //上下页
            $befor=Db::table('wz_news_article')->where('id>'.$id)->order('id asc')->limit('1')->find();
            $after=Db::table('wz_news_article')->where('id<'.$id)->order('id desc')->limit('1')->find();
            $this->assign(['data'=>$InfoDetail,'befor'=>$befor,'after'=>$after]);
    
            return $this->fetch();
        }
  • 相关阅读:
    进制
    enum
    文件操作fstream
    文件读取 FILE
    static_cast、dynamic_cast、reinterpret_cast、和const_c
    std::max 错误
    boost 时间
    c++ new 和delete
    c++ static静态
    BOOST 之filesystem, path
  • 原文地址:https://www.cnblogs.com/web928943/p/13678836.html
Copyright © 2020-2023  润新知