php 和 html 中没有文件或数据库的页面视图计数

发布于 2024-11-02 03:20:53 字数 52 浏览 0 评论 0原文


是否可以在不使用文件或数据库存储的情况下显示页面浏览量?

谢谢

Hi
Is it possible to show page view count without using file or database to store it?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泅渡 2024-11-09 03:20:53

如果您使用 APC(或其他一些操作码缓存),您可以将其存储在内存中。 APC 增量会很有帮助 http://ca.php.net/manual/ en/function.apc-inc.php,memcached 或其他服务也有类似的功能。

除此之外,它还需要存放在磁盘上(文件或数据库中)或内存中的某个地方。 PHP 本身没有内置的持久存储(尽管许多操作码缓存提供了它)。

If you're using APC (or some other opcode cache) you can store it in memory. APC Increment would be helpful http://ca.php.net/manual/en/function.apc-inc.php, there's similar features for memcached or other services.

Beyond that, it needs to go somewhere, on disk (in a file or a DB), or in memory. There's no built in persistant store with PHP itself (though many opcode caches provide it).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文