douxie1894 2019-04-20 03:47
浏览 53
已采纳

如何在PHP Codeigniter中使用cookie添加Post视图计数?

I am trying to add Post view counts using cookies in PHP Codeigniter. I have created a custom library(snippetfunctions) in which I have created a function(add_count) as shown below

  public function add_count($table,$column,$value)
{

$CI =& get_instance();//CI super object
$check_visitor = $CI->input->cookie(urldecode($value), FALSE);

 $ip = $CI->input->ip_address();
// if the visitor visit this article for first time then //
//set new cookie and update article_views column  ..
//you might be notice we used slug for cookie name and ip 
//address for value to distinguish between articles  views
if ($check_visitor == false) {
    $cookie = array(
        "name"   => urldecode($value),
        "value"  => "$ip",
        "expire" =>  time() + 0,
        "secure" => false
    );

    $CI->input->set_cookie($cookie);
$CI->Constant_model->update_counter($table,$column,urldecode($value));
}
}

and I used this function in my Controller file to add the count

$this->snippetfunctions->add_count('snippets','counter_views',$slug);

Where snippets is the table name, counter_views is the column name and $slug is the URL of the post which is used to identify the post.

The error I am getting is shown in image

enter image description here

Model function

 function update_counter($table, $column, $value)
{
    // return current article views 
    $this->db->where($column, urldecode($value));
    $this->db->select('counter_views');
    $count = $this->db->get($table)->row();
    // then increase by one 
    $this->db->where($column, urldecode($value));


    $this->db->set('counter_views', ($count['counter_views'] + 1));
    $this->db->update($table);
}
  • 写回答

2条回答 默认 最新

  • dongshuo1257 2019-04-20 05:31
    关注

    Try this code, hope this helps you
    3600 seconds and it means Current Time + 1 hour, your cookie will expire in one hour

    $cookie = array(
            "name"   => urldecode($value),
            "value"  => "$ip",
            "expire" =>  3600,//changes seconds for 1 hour from current time
            "secure" => false
        );
    

    Model:

    function update_counter($table, $column, $value)
    {
        // return current article views 
        $this->db->where($column, urldecode($value));
        $this->db->select('counter_views');
        $count = $this->db->get($table)->row('counter_views');
    
        $this->db->reset_query();
        // then increase by one 
        $this->db->set('counter_views', ($count + 1));//changes
        $this->db->where($column, urldecode($value));
        $this->db->update($table);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同