您好,欢迎访问一九零五行业门户网

一个简单的 PHP 访问计数器

// start at the top of the page since we start a sessionsession_name('mysite_hit_counter');session_start();//$fn = 'hits_counter.txt';$hits = 0;// read current hitsif (($hits = file_get_contents($fn)) === false){ $hits = 0;}// write one more hitif (!isset($_session['page_visited_already'])){ if (($fp = @fopen($fn, 'w')) !== false) { if (flock($fp, lock_ex)) { $hits++; fwrite($fp, $hits, strlen($hits)); flock($fp, lock_un); $_session['page_visited_already'] = 1; } fclose($fp); }}?>php hit counter example codepage content...
this page has =$hits;?> hits
复制代码
其它类似信息

推荐信息