php计数器
$counterfile);
}
if (!file_exists($counterfile)) {
exec( echo 0 > $counterfile);
}
displaycounter($counterfile);
?>
http://www.bkjia.com/phpjc/532316.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/532316.htmltecharticlephp计数器 $counterfile = balong.txt;//存储数值的文件名几路径 function displaycounter($counterfile) { $fp = fopen($counterfile,rw); $num = fgets($fp,5); $num += 1; pri...