8000 GitHub - rodchyn/mixpanel-php: Mixpanel PHP SDK
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

rodchyn/mixpanel-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Mixpanel PHP SDK

Library include two classes

Mixpanel - for data requests.

MetricsTracker - to track program events

Example usage

MetricsTracker

$metrics = new MetricsTracker("YOUR_TOKEN");
$metrics->track('purchase', array('item'=>'candy', 'type'=>'snack', 'ip'=>'123.123.123.123'));

Mixpanel

$api_key = 'your key';
$api_secret = 'your secret';

$mp = new Mixpanel($api_key, $api_secret);
$data = $mp->request(array('events', 'properties'), array(
   'event' => 'pages',
   'name' => 'page',
   'type' => 'unique',
   'unit' => 'day',
   'interval' => '20',
   'limit' => '20'
));
 
var_dump($data);

About

Mixpanel PHP SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0