如何在使用 Piwik 进行分析的页面上显示点击/访问计数器

发布于 2024-09-24 22:16:56 字数 101 浏览 3 评论 0原文

我想在主页上显示当天的访问量。 该页面由 Piwik 跟踪。

如何将 API 与 PHP 结合使用来获取今天的(唯一)访问量和点击量,以便我可以将它们显示在页面上的某个位置

I want to show the Visits for the current day on a homepage.
That page is tracked with Piwik.

How to use the API with PHP to get the (unique) visits and hits for today so that I can show them somewhere on the page

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

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

发布评论

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

评论(2

挖鼻大婶 2024-10-01 22:16:56
$result = file_get_contents("http://mysite.com/piwik/?module=API&method=VisitsSummary.getUniqueVisitors&idSite=1&period=day&date=today&format=php");
echo unserialize($result);
$result = file_get_contents("http://mysite.com/piwik/?module=API&method=VisitsSummary.getUniqueVisitors&idSite=1&period=day&date=today&format=php");
echo unserialize($result);
中性美 2024-10-01 22:16:56

也许这是稍后的答案,但是......

几天前,我为 Piwik 编写了一个新插件,它显示自定义日期范围内自定义网站的总访问量和图像视图。

欲了解更多信息,请访问http://киноархив.com/en/others/notes-on -html-jquery-php-mysql/10-piwik-graphical-counter.html

并在此处发布有关错误的任何信息 https://github.com/Globulopolis/Counter/issues

Maybe it's later answer but...

A few days ago I wrote a new plugin for Piwik which displays total visit and views on image for custom site for custom date range.

For more information please visit http://киноархив.com/en/others/notes-on-html-jquery-php-mysql/10-piwik-graphical-counter.html

and post any information about bugs here https://github.com/Globulopolis/Counter/issues

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