waarneembemiddeling/php-google-analytics-cookie-parser
最新稳定版本:1.0.0
Composer 安装命令:
composer require waarneembemiddeling/php-google-analytics-cookie-parser
包简介
README 文档
README
Parses the _ga analytics.js cookie to a ParsedCookie result which includes version, depth, client id and timestamp.
Usage
use Wb\GoogleAnalyticsCookieParser\GoogleAnalyticsCookieParser;
$string = 'GA1.2.230657868.1384941727';
$parser = new GoogleAnalyticsCookieParser();
$result = $parser->parse($string);
// Available properties
$result->getVersion(); // Output: GA1
$result->getDepth(); // Output: 2
$result->getClientId(); // Output: 230657868.1384941727
Acknowledgements
- Thanks to Matt Clarke for his research on the analytics.js/_ga cookie format: https://plus.google.com/110147996971766876369/posts/Mz1ksPoBGHx
统计信息
- 总下载量: 10.54k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-05-15