首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >PHP命中计数器自动生成多个页面

PHP命中计数器自动生成多个页面
EN

Stack Overflow用户
提问于 2012-09-26 23:32:42
回答 1查看 2.1K关注 0票数 2

嗨,我是php的新手,我正在尝试从phpjunkyard.com获取当前PHP文本命中计数器脚本,以自动生成动态页面的计数器,而不必为每个页面创建一个counter.txt文件。到目前为止,我设法让它为每个新页面编写一个新的.txt,如果它不存在,但我收到了一个错误,我不知道如何删除它。PS:我使用这个计数器是因为它有独特的访客计数系统。

这是原始的完整PHP文件:

代码语言:javascript
复制
<?php
/*******************************************************************************
*  Title: PHP hit counter (PHPcount)
*  Version: 1.4 @ March 3, 2012
*  Author: Klemen Stirn
*  Website: http://www.phpjunkyard.com
********************************************************************************
*  COPYRIGHT NOTICE
*  Copyright 2004-2012 Klemen Stirn. All Rights Reserved.
*
*  This script may be used and modified free of charge by anyone
*  AS LONG AS COPYRIGHT NOTICES AND ALL THE COMMENTS REMAIN INTACT.
*  By using this code you agree to indemnify Klemen Stirn from any
*  liability that might arise from it's use.
*
*  Selling the code for this program, in part or full, without prior
*  written consent is expressly forbidden.
*
*  Obtain permission before redistributing this software over the Internet
*  or in any other medium. In all cases copyright and header must remain
*  intact. This Copyright is in full effect in any country that has
*  International Trade Agreements with the United States of America or
*  with the European Union.
********************************************************************************
*
*  ACKNOWLEDGEMENT
*
*  Please support future script development by linking to us:
*  http://www.phpjunkyard.com/about/link2us.php
*
*  Or by sending a small donation:
*  http://www.phpjunkyard.com/about/donate.php
*
*******************************************************************************/

// SETUP YOUR COUNTER
// See file readme.html for detailed instructions

// Count unique visitors? 1 = YES, 0 = NO
$count_unique = 0;

// Number of hours a visitor is considered as "unique"
$unique_hours = 24;

// Minimum number of digits shown (zero-padding). Set to 0 to disable.
$min_digits = 0;

#############################
#     DO NOT EDIT BELOW     #
#############################

/* Turn error notices off */
error_reporting(E_ALL ^ E_NOTICE);

/* Tell browsers not to cache the file output so we can count all hits */
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

/* Is page ID set? */
if ( ! isset($_GET['page']) )
{
    die('ERROR: The counter.php file must be called with a <b>?page=PAGEID</b> parameter, for example <b>counter.php?page=test</b>');
}

/* Remove any illegal chars from the page ID */
$page = preg_replace('/[^a-zA-Z0-9\-_\.]/','',$_GET['page']);

/* Stop if $page is not valid */
if ( ! strlen($page) )
{
    die('ERROR: Page ID is missing or contains only invalid chars. Please use only these chars for the page ID: a-z, A-Z, 0-9, &quot;.&quot;, &quot;-&quot; and &quot;_&quot;');
}

/* Set values for cookie and log file names */
$cname   = 'tcount_unique_'.$page;
$logfile = 'logs/' . $page . '.txt';

/* Does the log file exist? */
if ( ! file_exists($logfile) )
{
    die('ERROR: Log file not found. Make sure there is a file called <b>' . $page . '.txt</b> inside your <b>logs</b> folder. On most servers file names are CaSe SeNSiTiVe!');
}

/* Open log file for reading and writing */
if ($fp = @fopen($logfile, 'r+'))
{
    /* Lock log file from other scripts */
    $locked = flock($fp, LOCK_EX);

    /* Lock successful? */
    if ($locked)
    {
        /* Let's read current count */
        $count = intval( trim( fread($fp, filesize($logfile) ) ) );

        /* If counting unique hits is enabled make sure it's a unique hit */
        if ( $count_unique == 0 || ! isset($_COOKIE[$cname]) )
        {
            /* Update count by 1 and write the new value to the log file */
            $count = $count + 1;
            rewind($fp);
            fwrite($fp, $count);

            /* Print the Cookie and P3P compact privacy policy */
            header('P3P: CP="NOI NID"');
            setcookie($cname, 1, time()+60*60*$unique_hours);
        }
    }
    else
    {
        /* Lock not successful. Better to ignore than to damage the log file */
        $count = 1;
    }

    /* Release file lock and close file handle */
    flock($fp, LOCK_UN);
    fclose($fp);
}
else
{
    die("ERROR: Can't read/write to the log file ($logfile). Make sure this file is writable by PHP scripts. On UNIX servers, CHMOD the log file to 666 (rw-rw-rw-).");
}

/* Is zero-padding enabled? If yes, add zeros if required */
if ($min_digits)
{
    $count = sprintf('%0'.$min_digits.'s', $count);
}

/* Print out Javascript code and exit */
echo 'document.write(\''.$count.'\');';
exit();
?>

下面是我所做的更改(在第82行):

发自:

代码语言:javascript
复制
/* Does the log file exist? */
if ( ! file_exists($logfile) )
{
    die('ERROR: Log file not found. Make sure there is a file called <b>' . $page . '.txt</b> inside your <b>logs</b> folder. On most servers file names are CaSe SeNSiTiVe!');
}

至:

代码语言:javascript
复制
/* Does the log file exist? */
if ( ! file_exists($logfile) )
{
fopen($logfile, 'w') or die("can't open file");
}

因此,它为每个不同的页面按id创建了一个新的.txt计数器,如下所示:

代码语言:javascript
复制
<script language="Javascript" src="http://www.website.com/counter.php?page=<?php echo $pageid();?>">

但这是我在创建.txt文件时第一次使用新id时得到的错误:

代码语言:javascript
复制
Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/u716430538/public_html/counter14/counter.php on line 95
document.write('1');

然后,如果您打开相同的id,它将显示为normal:

代码语言:javascript
复制
document.write('1');

很抱歉我的英语不好,希望有人能帮助我。谢谢

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2012-09-26 23:48:03

试试这个:

代码语言:javascript
复制
/* Does the log file exist? */
if ( ! file_exists($logfile) )
{
$f = fopen($logfile, 'w') or die("can't open file");
fwrite($f,"0");
}
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/12605316

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档