首页 > 开发 > PHP > 正文

PHP教程.应用实例3

2024-05-04 22:58:23
字体:
来源:转载
供稿:网友
php计数器


<?php


$counterfile = "balong.txt";//存储数值的文件名几路径

function displaycounter($counterfile) {
$fp = fopen($counterfile,"rw");
$num = fgets($fp,5);
$num += 1;
print "您是第 "."$num"." 个看巴泷计数器的家伙";
exec( "rm -rf $counterfile");
exec( "echo $num > $counterfile");
}

if (!file_exists($counterfile)) {
exec( "echo 0 > $counterfile");
}

displaycounter($counterfile);

?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表