PHP code example of tag-planet / universal-analytics
1. Go to this page and download the library: Download tag-planet/universal-analytics library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Setup a new tracker with "foo" as its name:
$fooTracker = UniversalAnalytics::ga('create', 'UA-123456-1', ['name'=>'foo', 'domainName' => 'tagpla.net']);
// Name would be "foo":
UniversalAnalytics::ga('create', 'UA-123456-1', ['name'=>'foo']);
// Name would be "t1":
UniversalAnalytics::ga('create', 'UA-123456-2');
// Name would be "bar":
UniversalAnalytics::ga('create', 'UA-123456-3', ['name'=>'bar', 'domainName' => 'tagpla.net']);
// Name would be "t3":
UniversalAnalytics::ga('create', 'UA-123456-4', ['domainName' => 'tagpla.net']);
// Grab the "foo" instance
$tracker = UniversalAnalytics::get('foo');
// Grab the "foo" instance
$fooTracker = UniversalAnalytics::get('foo');
// Call a pageview event to the "foo" instance
$fooTracker->ga('send', 'pageview');