PHP code example of chargely / chargify-sdk-php
1. Go to this page and download the library: Download chargely/chargify-sdk-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/ */
chargely / chargify-sdk-php example snippets
Crucial\Service\Chargify;
$chargify = new Chargify([
'hostname' => 'yoursubdomain.chargify.com',
'api_key' => '{{API_KEY}}',
'shared_key' => '{{SHARED_KEY}}'
]);
// Crucial\Service\Chargify\Customer
$customer = $chargify->customer()
// set customer properties
->setFirstName('Dan')
->setLastName('Bowen')
->setEmail('[email protected]')
// send the create request
->create();
// check for errors
if ($customer->isError()) {
// array of errors loaded during the transfer
$errors = $customer->getErrors();
} else {
// the transfer was successful
$customerId = $customer['id']; // Chargify customer ID
$firstName = $customer['first_name'];
$lastName = $customer['last_name'];
$email = $customer['email'];
}
bash
curl -sS https://getcomposer.org/installer | php
bash
php composer.phar