ページビューをカウントするための PHP コード (テキスト キャッシュ)
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
リリース: 2016-07-25 08:51:47
-
- /**
- @統計ページビュー テキストキャッシュ
- @site http://bbs.it-home.org
- *
- */
- プライベート関数 visit($id)
- {
- if (isset($GLOBALS['cfg_safe']['visit-article']) && $ GLOBALS['cfg_safe']['visit-article'])
- {
- $file = SYS_PATH . 'cache/visit-article.txt';
-
- if (!file_exists($file))
- {
- file_put_contents($file, ',' . $id);
- }
- else if ((time() - filectime($file)) < $GLOBALS['cfg_safe']['visit-article'])
- {
- file_put_contents($file, ',' . $id, FILE_APPEND );
- }
- else
- {
- $string = file_get_contents($file);
- if ($string != '')
- {
- $temp =explode(',', $string);
- foreach ($temp as $row )
- {
- if (empty($row))
- continue;
- $this->mysql->update('UPDATE `pcb_article` SET `visit` = `visit` + 1 WHERE `id` = ' . $行 . ' LIMIT 1');
- }
- }
- unlink($file);
- }
- }
- }
复制發
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2025-02-26 03:58:14
-
2025-02-26 03:38:10
-
2025-02-26 03:17:10
-
2025-02-26 02:49:09
-
2025-02-26 01:08:13
-
2025-02-26 00:46:10
-
2025-02-25 23:42:08
-
2025-02-25 22:50:13
-
2025-02-25 21:54:11
-
2025-02-25 20:45:11