php ios推送(代码)_PHP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:file_get_contents("php://input", "r")实例介绍
解释不清,直接上例子 index.html 复制代码 代码如下: form action=action.php method=post input type=text name=userName id=userName /br/ input type=text name=userPass id=userPass /br/ input type=submit value=ok / /form action.php 复制代码 代码如下: ?php

本篇文章是对php ios推送进行了详细的分析介绍,需要的朋友参考下   复制代码 代码如下:


<?php
//php需要开启ssl(OpenSSL)支持
$apnsCert = "ck.pem";//连接到APNS时的证书许可文件,证书需格外按要求创建
$pass = "123456";//证书口令
$serverUrl = "ssl://gateway.sandbox.push.apple.com:2195";//push服务器,这里是开发测试服务器
$deviceToken = "a8fcd4aa8943b223d4ebcd54fe168a8b99b3f24c63dbc0612db25a8c0a588675";//ios设备id,中间不能有空格,每个ios设备一个id
$message = $_GET ['message'] or $message = "hello!";
$badge = ( int ) $_GET ['badge'] or $badge = 2;
$sound = $_GET ['sound'] or $sound = "default";
$body = array('aps' => array('alert' => $message , 'badge' => $badge , 'sound' => $sound));
$streamContext = stream_context_create();
stream_context_set_option ( $streamContext, 'ssl', 'local_cert', $apnsCert );
stream_context_set_option ( $streamContext, 'ssl', 'passphrase', $pass );
$apns = stream_socket_client ( $serverUrl, $error, $errorString, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $streamContext);//连接服务器
if ($apns) {
echo "Connection OK <br/>";
} else {
echo "Failed to connect $errorString";
return;
}
$payload = json_encode ( $body );
$msg = chr(0) . pack('n', 32) . pack('H*', str_replace(' ', '', $deviceToken)) . pack('n', strlen($payload)) . $payload;
$result = fwrite ( $apns, $msg);//发送消息
fclose ( $apns );
if ($result)
echo "Sending message successfully: " . $payload;
else
echo 'Message not delivered';
?>

分享:mongo Table类文件 获取MongoCursor(游标)的实现方法分析
MongoCursor Object 游标类 Mongo Config.php配置文件 Table.php(mongodb操作数据库类文件) Config.php配置文件 复制代码 代码如下: ?php require_once 'Zend/Exception.php'; class Hrs_Mongo_Config { const VERSION = '1.7.0'; const DEFAULT_HOST = 'localhost';

来源:模板无忧//所属分类:PHP教程/更新时间:2013-07-03
相关PHP教程