我的表中有一个名为计数器的列,称为文章
问题是如何将这个列中的值增加 1 左右,所以在控制器或模型中我将使用 update db 函数。
例如,我正在考虑这样的事情:
$id = 5; //article id (I will get that from the url or db, no problem with that)
$this->db->update("current counter column value plus one where id column equals $id ");
让我们假设我得到了文章# of views:
$this->db->select_sum("counter")->get("articles");
我知道我需要验证用户的 ip,所以例如我不是每次页面加载都计算它,而是仅在 5 分钟后计算。不过那是另一回事了 ;)。我只是需要完成这个问题。