1. Go to this page and download the library: Download zfr/zfr-mailchimp library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
zfr / zfr-mailchimp example snippets
$client = new MailChimpClient('my-api-key');
// Get activity about a list
$activity = $client->getListActivity(array(
'id' => 'list-id'
));
// Add a new folder
$client->addFolder(array(
'name' => 'my-folder-name',
'type' => 'template'
));