waarneembemiddeling/php-google-analytics-cookie-parser

1.0.0 2014-06-06 07:38 UTC

This package is not auto-updated.

Last update: 2024-09-23 19:23:19 UTC


README

Build Status Scrutinizer Quality Score

解析 _ga analytics.js cookie 到 ParsedCookie 结果,包括版本、深度、客户端 ID 和时间戳。

用法

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

致谢