• 访客次数统计


    插件方法

      <script type="text/javascript" charset="gb2312" src="{dede:field name='phpurl'/}/stat.php"></script>

    目录文件放入(见文件dedecms插件实现您是本站的多少位访客)

    另一种方法

    1.将count.php文件放到网站根目录,内容如下

    <?
    //创作来自亳州淮中网:http://www.guoyangnet.cn使用请保留版权。
    session_start();
    $max_len = 8;
    $CounterFile = "counter.dat";
    if(!file_exists($CounterFile))
    {
    $Counter = 0;
    $cf= fopen($CounterFile,"w");
    flock($cf,3);
    fputs($cf,"0");
    fclose($cf);
    }
    else
    {
    $cf = fopen($CounterFile,"r");
    flock($cf,3);
    $Counter = trim(fgets($cf,$max_len));
    fclose($cf);
    }
    if (session_is_registered("in")==false){
    $Counter++;
    $cf = fopen($CounterFile,"w");
    flock($cf,3);
    fputs($cf,$Counter);
    fclose($cf);
    session_register("in");
    }

    $strCount = strval($Counter); //获得的记数转成字符串
    echo "document.write("".$strCount."");";
    ?>

    2.在需要显示网站访客数量的地方加入下面的代码

    <script src="/count.php"></script>

  • 相关阅读:
    Java 链表
    知识点归列
    HTML和CSS必须知道的重点难点问题
    函数表达式
    javascript原型链
    canvas成长树
    checkbox选中问题
    使用vue-cli脚手架自定义iview主题
    AI学习吧-Redis操作-事务、订阅
    AI学习吧-REDIS-常识
  • 原文地址:https://www.cnblogs.com/zhouyx/p/6677484.html
Copyright © 2020-2023  润新知