Send push motification to iphone and android code    function sendIphoneAdminPush($token,$message)  {   $streamContext = stream_context_create();   $badge = 0;   //$message = "Here is the new deal having 50% discount for business ABC.";   //$token = "ghjkghkgkghkghkjghkghkghjkhkghkghjkhkhgjkhgj";   stream_context_set_option($streamContext, 'ssl', 'local_cert', $_SERVER['DOCUMENT_ROOT'].'/nodatapp/pem/pushNew.pem');    $apns = stream_socket_client(    //'ssl://gateway.sandbox.push.apple.com:2195',    'ssl://gateway.push.apple.com:2195',    $error,    $errorString,    60,    STREAM_CLIENT_CONNECT, $streamContext);    $load = array(        'aps' => array(         'alert' => $message,         'badge' => $badge,         'sound' => 'default',         'data' => array(          'push_type' => "IphonePush"        )        )       );     $payloa...
 
 
Comments
Post a Comment