forked from immobiliare/ApnsPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_server.php
73 lines (59 loc) · 1.8 KB
/
sample_server.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* @file
* sample_server.php
*
* Push server demo
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://code.google.com/p/apns-php/wiki/License
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @author (C) 2010 Aldo Armiento ([email protected])
* @version $Id$
*/
// Adjust to your timezone
date_default_timezone_set('Europe/Rome');
// Report all PHP errors
error_reporting(-1);
// Using Autoload all classes are loaded on-demand
require_once 'ApnsPHP/Autoload.php';
// Instanciate a new ApnsPHP_Push object
$server = new ApnsPHP_Push_Server(
ApnsPHP_Abstract::ENVIRONMENT_SANDBOX,
'server_certificates_bundle_sandbox.pem'
);
// Set the Root Certificate Autority to verify the Apple remote peer
$server->setRootCertificationAuthority('entrust_root_certification_authority.pem');
// Set the number of concurrent processes
$server->setProcesses(2);
// Starts the server forking the new processes
$server->start();
// Main loop...
$i = 1;
while ($server->run()) {
// Check the error queue
$aErrorQueue = $server->getErrors();
if (!empty($aErrorQueue)) {
// Do somethings with this error messages...
var_dump($aErrorQueue);
}
// Send 10 messages
if ($i <= 10) {
// Instantiate a new Message with a single recipient
$message = new ApnsPHP_Message('1e82db91c7ceddd72bf33d74ae052ac9c84a065b35148ac401388843106a7485');
// Set badge icon to "i"
$message->setBadge($i);
// Add the message to the message queue
$server->add($message);
$i++;
}
// Sleep a little...
usleep(200000);
}