php 和 html 中没有文件或数据库的页面视图计数
嗨
是否可以在不使用文件或数据库存储的情况下显示页面浏览量?
谢谢
Hi
Is it possible to show page view count without using file or database to store it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 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).