- <?
- @session_start();
- $counter = intval(file_get_contents("counter.dat")); //創(chuàng)建一個dat數(shù)據(jù)文件
- if(!$_SESSION['#'])
- {
- $_SESSION['#'] = true;
- $counter++; //刷新一次+1
- $fp = fopen("counter.dat","w"); //以寫入的方式,打開文件,并賦值給變量fp
- fwrite($fp, $counter); //將變量fp的值+1
- fclose($fp);
- }
- ?>
輸入代碼
- <?php echo "$counter";?>
案列展示
- <?php
- @session_start();
- $counter = intval(file_get_contents("counter.dat"));
- if(!$_SESSION['#'])
- {
- $_SESSION['#'] = true;
- $counter++;
- $fp = fopen("counter.dat","w");
- fwrite($fp, $counter);
- fclose($fp);
- }
- ?>
- <p align="center">您是到訪的第<?php echo "$counter";?>位用戶</p>
更多相關(guān)文章
如何實現(xiàn)Sublime Text3快速生成html代碼
php 寫內(nèi)容到文件,把日志寫到log文件
PHP $_GET 變量
版權(quán)聲明:文章圖片資源來源于網(wǎng)絡(luò),如有侵權(quán),請留言刪除!!!
評論