PHP code example of dutchie027 / apnpush
1. Go to this page and download the library: Download dutchie027/apnpush 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/ */
dutchie027 / apnpush example snippets
php
$client = new Client($authProvider, $production = false);
$client->addNotifications($notifications);
// Set the number of concurrent requests sent through the multiplexed connections. Default : 20
$client->setNbConcurrentRequests( 40 );
// Set the number of maximum concurrent connections established to the APNS servers. Default : 1
$client->setMaxConcurrentConnections( 5 );
$responses = $client->push();