基于地址的页计数器

发布于 2024-11-19 14:11:04 字数 336 浏览 0 评论 0原文

是否可以根据页面的地址/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 技术交流群。

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

发布评论

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

评论(1

骷髅 2024-11-26 14:11:04

使用数组: 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?

enter image description here

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