PHP code example of smadeira / planning-center-api
1. Go to this page and download the library: Download smadeira/planning-center-api 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/ */
smadeira / planning-center-api example snippets
use PlanningCenterAPI\PlanningCenterAPI as PCO;
// Get environment variables
$dotenv = Dotenv\Dotenv::createUnsafeImmutable(__DIR__);
$dotenv->load();
// Get all people named Smith and sort by first name in descending order. Then, print the results in array format (you would do additional processing
// of the data depending on your needs.
$pco = new PCO();
$people = $pco->module('people')
->table('people')
->where('last_name', '=', 'Smith')
->
lanningCenterAPI\PlanningCenterAPI as PCO;
// Get environment variables
$dotenv = Dotenv\Dotenv::create(__DIR__);
$dotenv->load();
$pco = new PCO();
$people = $pco->module('people')
->table('people')
->where('last_name', '=', 'Smith')
->
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.