哪里可以在我的php class codeigniter中放入计数器计数器代码?
作者:互联网
我已经创建了一个计数器,它工作正常,但是问题是,我将代码放在了如下构造函数中:
// working code
<?php
class Welcome extends CI_Controller{
function __construct()
{
hit_counter(); // works perfectly fine...
}
function view_blog()
{
// perfectly working code
}
function other_function()
{
// working fine
}
}
现在的问题是,每当用户第一次访问该网站时,它就会运行代码,但是当他访问view_blog时,它也会运行,当使用other_function时,它再次运行,我想做的就是我的计数器会计数仅一次,此后,只有当他下次访问该网站时,才应该对他进行计数,而不是当他访问各种功能时,才对他进行计数.
解决方法:
为什么不实现PHP本机会话?您也可以为此实施CI的会话.
<?php
session_start(); //<--- Add here
class Welcome extends CI_Controller{
function __construct()
{
if(!isset($_SESSION['visited']))
{
hit_counter(); // works perfectly fine...
$_SESSION['visited'] = true; //<--- Sets here the first time.
}
}
标签:codeigniter,php,hitcounter 来源: https://codeday.me/bug/20191029/1962148.html