基于地址的页计数器
是否可以根据页面的地址/URL 跟踪页面的访问者?
i) 通常,在 PHP 中,我们有会话变量/cookie:
ex: $_SESSION['visits']++;
ii)是否有任何方法可以计算特定页面的访问者,即无需
在每个页面上都有上述代码?
喜欢:
if(page_url == '')
inc++;
else if(page_url == '')
inc2++;
Is it possible to keep track of visitors to a page based on its address/url?
i) Normally, in PHP, we have session variables/cookies:
ex: $_SESSION['visits']++;
ii) Is there any method to calculate visitors to a particular page, i.e. without having the above code
at each page?
like:
if(page_url == '')
inc++;
else if(page_url == '')
inc2++;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用数组:
isset($visits[$page_url]) ? $visits[$page_url]++ : 1;
。如果这是第一次访问某个 url,它会做什么,它会为带有 $page_url 键的数组分配一个值。但是你必须将这些值存储在某个地方(可能是数据库)。对于数据库,您需要创建一个数据库表甚至一组表。但是,如果已经有 Google Analytics 可以计算访问次数、唯一访问次数、浏览器统计信息,为什么还要自己动手呢?显示用户在您的页面上点击的位置、用户来自哪里等等?
Use an array:
isset($visits[$page_url]) ? $visits[$page_url]++ : 1;
. What it does if there if thats a first visit to an url, it assigns a valute to array with a key $page_url. But then you have to store these values somwhere (probably a database). For a database you need to create a database table or even a set of tables.But why do it yourself if there is already Google analytics that calculates visits, unique visits, browser statistics, shows where user has clicked on your page, where user came from and much much more?