PHP code example of kasl / amplitude-php
1. Go to this page and download the library: Download kasl/amplitude-php 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/ */
kasl / amplitude-php example snippets
$client = new Kasl\Amplitude\AmplitudeClient($apiKey, new \Guzzle\Http\Client());
$event = new Kasl\Amplitude\Message\Event();
$event->set('userId', 17)->set('eventType', '[Amplitude] Revenue');
$client->track($event);