joaofigueira / analytics
检索分析数据
v2.0.0
2014-11-14 11:57 UTC
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2024-09-17 02:23:00 UTC
README
报告分析数据。
目前正在与Piwik合作。
通过composer安装
{
require: {
"joaofigueira/analytics": "2.*"
}
}
使用示例
<?php use Analytics\DataSources\Piwik; use Analytics\Querys\Browsers as Analytics; //check out the Querys folder, lots of ready to use Querys in there! $auth = new Piwik($url, $token, $idSite); //engine(Piwik), url, token, idSite $result = new Analytics($auth); $result ->startDate('2014-10-01') ->endDate('2014-10-15'); $analyticsData = $result->fetchData(); $analyticsgraph = $result->fetchGraph();
扩展
<?php use Analytics\Analytics; class NewExtension extends Analytics { //here you can write your own code to query the API }