欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 统计页面浏览次数(文本缓存)的代码

程序员文章站 2022-05-28 09:56:20
...
  1. /**
  2. @统计页面浏览次数 文本缓存
  3. @site http://bbs.it-home.org
  4. *
  5. */
  6. private function visit($id)
  7. {
  8. if (isset($GLOBALS['cfg_safe']['visit-article']) && $GLOBALS['cfg_safe']['visit-article'])
  9. {
  10. $file = SYS_PATH . 'cache/visit-article.txt';
  11. if (!file_exists($file))
  12. {
  13. file_put_contents($file, ',' . $id);
  14. }
  15. else if ((time() - filectime($file)) {
  16. file_put_contents($file, ',' . $id, FILE_APPEND);
  17. }
  18. else
  19. {
  20. $string = file_get_contents($file);
  21. if ($string != '')
  22. {
  23. $temp = explode(',', $string);
  24. foreach ($temp as $row)
  25. {
  26. if (empty($row))
  27. continue;
  28. $this->mysql->update('UPDATE `pcb_article` SET `visit` = `visit` + 1 WHERE `id` = ' . $row . ' LIMIT 1');
  29. }
  30. }
  31. unlink($file);
  32. }
  33. }
  34. }
复制代码