摘要:本文實例講述了使用文本統計訪問量的方法。分享給大家供大家參考,具體如下方法方法文件用法
本文實例講述了php使用文本統計訪問量的方法。分享給大家供大家參考,具體如下:$fp = fopen("counter.txt", "r+");
while(!flock($fp, LOCK_EX)) { // acquire an exclusive lock
? // waiting to lock the file
}
$counter = intval(fread($fp, filesize("counter.txt")));
$counter++;
ftruncate($fp, 0); ? // truncate file
fwrite($fp, $counter); // set your data
fflush($fp); ? ? ?// flush output before releasing the lock
flock($fp, LOCK_UN); ?// release the lock
fclose($fp);
counter.php文件:
/* counter */
//opens countlog.txt to read the number of hits
$datei = fopen("countlog.txt","r");
$count = fgets($datei,1000);
fclose($datei);
$count=$count + 1 ;
echo "$count" ;
echo " hits" ;
echo "n" ;
// opens countlog.txt to change new hit number
$datei = fopen("countlog.txt","w");
fwrite($datei, $count);
fclose($datei);
?>
include("counter.php");
?>
?
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/561.html
摘要:的類型均為類型,前者現在時表示主動創建,后者過去分詞表示被動更新。推薦單表行數超過萬行或者單表容量超過,才推薦進行分庫分表。超過三個表禁止。防止因字段類型不同造成的隱式轉換,導致索引失效。說明會統計值為的行,而列名不會統計此列為值的行。 一.編程規約 (一)命名風格 1.目錄使用小寫+下劃線 home,view,model,admin_view 2.類 UpperCamelCa...
閱讀 1125·2021-11-24 09:38
閱讀 3229·2021-11-19 09:56
閱讀 2954·2021-11-18 10:02
閱讀 720·2019-08-29 12:50
閱讀 2565·2019-08-28 18:30
閱讀 859·2019-08-28 18:10
閱讀 3659·2019-08-26 11:36
閱讀 2639·2019-08-23 18:23