PHP code example of mobile-backend / phalcon
1. Go to this page and download the library: Download mobile-backend/phalcon 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/ */
mobile-backend / phalcon example snippets
$mobileBackend = new MobileBackend();
$json = $mobileBackend
->setMethod("GET")
->addQuery("target", [$os])
->setEndPoint("push")
->execute();
// message
$message = "A Happy New Year!!";
// send time
$dateTime = new DateTime("2016-01-01 00:00:00");
$dateTime->setTimeZone(new DateTimeZone("UTC"));
$deliveryTime = $dateTime->format("Y-m-d\TH:i:s.\0\0\0\Z");
$mobileBackend = new \MobileBackend\Phalcon\MobileBackend();
$mobileBackend
->setMethod("POST")
->addQuery("message", $message)
->addQuery("deliveryTime", [
"__type" => "Date",
"iso" => $deliveryTime
])
->setEndPoint("push")
->execute();
// message
$message = "Edit Message";
// objectId
$objectId = "Edit Push Message ObjectId";
$mobileBackend = new \MobileBackend\Phalcon\MobileBackend();
$mobileBackend
->setMethod("PUT")
->addQuery("message", $message)
->setEndPoint("push/". $objectId)
->execute();
$mobileBackend = new \MobileBackend\Phalcon\MobileBackend();
$mobileBackend
->setMethod("DELETE")
->setEndPoint("push/" . $objectId)
->execute();