把以下存成 count.php
================================================
<?
$formatnumber = true; // add thousands separator? false disables it.
// ONLY EDIT BELOW IF YOU WANT AN HIT COUNTER RENDERED AS AN IMAGE
$showimage = false; // change to true to enable image render
$font = 2; // font style, 1-5. These are built in php fonts!
$fontcolour = "black"; // black or white font?
$bgcolor = "transparent"; // transparent or black background?
// DO NOT EDIT BELOW THIS LINE - DO THE CUSTOMISING IN THE PAGE YOU INCLUDE ON! //
$path = __FILE__;
$path = preg_replace( "'\\\count\.php'", "", $path);
$path = preg_replace( "'/count\.php'", "", $path);
$counter = $path."/hitcounter.dat";
if(file_exists($counter))
{
$fp = fopen($counter, "r+");
flock($fp, 1);
$count = fgets($fp, 4096);
$count += 1;
fseek($fp,0);
fputs($fp, $count);
flock($fp, 3);
fclose($fp);
}
else
{
print "<p>Error, could not find hitcounter.dat in ".$path.", please check it!</p>";
}
if($formatnumber)
{
$count_new = number_format($count, 2, ",", ",");
$count_new = substr($count_new, 0 , -3);
$count = $count_new;
}
if($showimage)
{
$width = imagefontwidth($font) * strlen($count);
$height = imagefontheight($font);
$im = @imagecreate($width, $height);
if(trim($bgcolor) == "black")
$background_color = imagecolorallocate($im, 0, 0, 0); // black background
else
{
$background_color = imagecolorallocate($im, 255, 255, 255); //white background
imagecolortransparent($im, $background_color);
}
if(trim($fontcolour) == "black")
$text_color = imagecolorallocate($im, 0, 0, 0); // black text
else
$text_color = imagecolorallocate($im, 255, 255, 255); // white text
imagestring($im, $font, 0, 0, $count, $text_color);
header("Content-type: image/gif");
imagegif($im);
imagedestroy($im);
}
else
{
print $count;
}
?>
===============================
開一個 hitcounter.dat 檔案 內容建入起始數字 並chmod 0777
===============================
要顯示計數器的地方
<?php include("count.php"); ?>
--
免費硬碟免費相簿免費信箱免費網址免費留言板免費討論區免費計數器免費翻譯
免要找免費資源就來費廣播免費撥接免費轉址免費部落格免費素材免費電子報免
費上傳空間免費網址免費計數器免費翻譯免費資源免費桌布免費線上掃毒免費討
論區免費聊天 The Free Group 免費資源網路社群免費留言板免費撥接免費翻譯
免費電子報免費賀卡免費掃毒免費廣播免費撥接http://www.FreeGroup.org免費
免費賀卡免費掃毒免費廣播免費撥接免費轉址免費部落格免費素材免費電子報免
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.171.118.131