This is repo is cloned from https://github.com/stape-io/stape-sgtm-php
A PHP SDK to send tracking events to server-side GTM containers. Works in conjunction with Data Client.
Fill in the basic parameters:
use Stape\Sgtm\StapeSGTM;
$sgtm = StapeSGTM::create('https://gtm.stape.io', '/data');
Variable | Description |
---|---|
$gtmServerDomain | Server host |
$requestPath | Request processing path |
$sgtm->sendEventData(<$eventName>, <$eventData>);
Variable | Description |
---|---|
$eventName | Event name |
$eventData | Array of options for forming event data |
$eventData
$eventData = [
'page_hostname' => 'Stape',
'page_location' => 'http://stape.io',
'page_path' => '/',
'user_data' => [
'sha256_email_address' => Transforms::sha256hex('[email protected]'),
'address' => [
'first_name' => 'Jhon',
],
],
];
Option | Description |
---|---|
trim | Removes whitespace from the beginning and end of the value |
base64 | Encodes the string in Base64 format |
md5 | Encodes the string in MD5 format |
sha256base64 | Encodes the string in SHA256 Base64 format |
sha256hex | Encodes the string in SHA256 HEX format |
namespace Stape\Sgtm\Example;
use Stape\Sgtm\StapeSGTM;
use Stape\Sgtm\Transforms;
require_once __DIR__ . '/../vendor/autoload.php';
$start = StapeSGTM::create('https://gtm.stape.io', '/data?dhjdf=123');
$eventData = [
'client_id' => '123456',
'currency' => 'USD',
'ip_override' => '79.144.123.69',
'language' => 'en',
'page_encoding' => 'UTF-8',
'page_hostname' => 'Stape',
'page_location' => 'http://stape.io',
'page_path' => '/',
'user_data' => [
'sha256_email_address' => Transforms::sha256hex('[email protected]'),
'phone_number' => '123456769',
'address' => [
'first_name' => 'Jhon',
],
],
];
var_dump($start->sendEventData('page_view', $eventData));