PHP code example of castledio / castled-php-sdk
1. Go to this page and download the library: Download castledio/castled-php-sdk 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/ */
castledio / castled-php-sdk example snippets
composer
Castled::init(<Your API Key>);
Castled::identify([
'userId' => '12345',
'traits' => [
'plan' => 'basic',
'first_name' => 'John',
'last_name' => 'Taylor'
]
]);
Castled::track([
'event' => 'order_status_update',
'userId' => '12345',
'properties' => [
'plan' => 'basic',
'order_id' => 'o1'
]
]);