Heim >Backend-Entwicklung >PHP-Tutorial >PHP教程.应用实例3_PHP教程

PHP教程.应用实例3_PHP教程

WBOY
WBOYOriginal
2016-07-13 17:22:35798Durchsuche

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);
?>

www.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...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn