# PHP
TIP
Before you begin, please read Preparation before Data Ingestion.
The minimum compatible PHP version is 5.5
Latest version: 2.1.1
Update time: 2022-11-10
Resource download: Source Code (opens new window)
# SDK Integration
1.1 With the Composer integration SDK, place the following dependency information in the comp
o
ser.json
file (recommended):
{
"require": {
"thinkinggame/ta-php-sdk": "v2.1.1"
}
}
1.2 You can also download the SDK source code (opens new window) from GitHub and integrate it into your project. Just put TaPhpSdk.php
in the directory of your project.
1.3 Logbus Integration
We recommend using SDK+LogBus to track and report data on server. You can refer to the following documents to complete the installation of Logbus: LogBus User Guide
# Initialization
The following is the sample code for SDK initialization:
require "TaPhpSdk.php";
$te = new ThinkingDataAnalytics(new FileConsumer(LOG_DIRECTORY));
LOG_DIRECTORY
is the local folder path.
# Common Features
In order to ensure that the distinct ID and account ID can be bound smoothly, if your game uses the distinct ID and account ID, we strongly recommend that you upload these two IDs at the same time, otherwise the account will not match, causing users to double count. For specific ID binding rules, please refer to the chapter on User Identification Rules.
# 3.1 Sending Events
You can call track
to upload events. It is suggested that you set event properties based on the data tracking plan drafted previously. Here is an example of a user buying an item:
$account_id = "ABC12345";
$distinct_id = "SDIF21dEJWsI232IdSJ232d2332";
$properties = array();
$properties["#time"] = date("Y-m-d H:i:s",time());
$properties["#ip"] = "123.123.123.123";
$properties["Product_Name"] ="Shoes";
$properties["Price"] = 30;
$properties["OrderId"] ="abc_123";
try{
$te->track($distinct_id,$account_id,"Payment",$properties);
}catch (Exception $e){
echo $e;
}
- Key is the name of the property and refers to the string type. It must start with a character, and contain numbers, characters (insensitive to case, and upper cases would be transformed into lower cases by TE) and underscores "_", with a maximum length of 50 characters.
- Value, the value of the property, supports string, numbers, Boolean, time, object, array object, and array
The requirements for event properties and user properties are the same as that for super properties
# 3.2 User Properties
You can set general user properties by calling user_set
API. The original properties would be replaced by the properties uploaded via this API. If no user properties are set before, user properties will be newly created. The type of newly-created user properties must conform to that of the uploaded properties. User name setting is taken as the example here:
$properties = array();
$properties["user_name"] = "TA";
try{
$te->user_set($distinct_id,$account_id,$properties);
}catch (Exception $e){
echo $e;
}
$properties["user_name"] = "TE";
try{
$te->user_set($distinct_id,$account_id,$properties);
}catch (Exception $e){
echo $e;
}
# Best Practice
The following sample code covers all the above-mentioned operations. It is recommended that the codes be used in the following steps:
require "TaPhpSdk.php";
$te = new ThinkingDataAnalytics(new FileConsumer(LOG_DIRECTORY));
$account_id = "ABC12345";
$distinct_id = "SDIF21dEJWsI232IdSJ232d2332";
$properties = array();
$properties["#time"] = date("Y-m-d H:i:s",time());
$properties["#ip"] = "123.123.123.123";
$properties["Product_Name"] ="Shoes";
$properties["Price"] = 30;
$properties["OrderId"] ="abc_123";
try{
$te->track($distinct_id,$account_id,"Payment",$properties);
}catch (Exception $e){
echo $e;
}
$user_properties = array();
$user_properties["user_name"] = "ABC";
try{
$te->user_set($distinct_id,$account_id,$user_properties);
}catch (Exception $e){
echo $e;
}
$te->flush();