Home >php教程 >php手册 >谈谈如何远程使用PHP文本型计数器

谈谈如何远程使用PHP文本型计数器

WBOY
WBOYOriginal
2016-06-13 10:23:58942browse

我们大家一定都知道PHP的强大功能了,利用它可以很容易的写一个文本型计数器出来,可是这只能在你能运行PHP程序的站点才能使用,如何才能在你不能运行PHP的站点也能使用它呢?请往下看:
其实这利用了一个JavaScript的document.write函数将我们的计数给显示出来
在你需要计数器的地方插入一句html语言:就可以了。下面
是counter.php的源程序。

//--------------------------------------------------------------------
// 文本计数器
// 作者: 徐小东(chinlone)
// 主页: http://lthx.126.com
// E-mail: chinlone@china.com
// Oicq:4703122
//--------------------------------------------------------------------
$counterFile = "counter.txt";//文件名
if (!file_exists($counterFile)) {
$fp = fopen($counterFile,"a");//如果没有counter.txt这个文件就创建它
fwrite($fp,"0");//并将0值写回文件
fclose($fp);//关闭文件
}
$fp = fopen($counterFile,"r");//读方式打开counter.txt文件
$num = fgets($fp,9);//读文件指针所指的行(第一行)长度为9,值付给num变量
fclose($fp);//关闭文件
$num++;//值增1


$fp = fopen($counterFile,"w+");
fwrite($fp,$num);//将新值写回文件
fclose($fp);//关闭文件
echo "document.write($num)";//利用JavaScript的document.write函
数将我们的计数给显示出来
?>
在apache+PHP4.0下通过
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn