Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道 APNS 的 int 返回值发送推送消息是什么意思。
更具体地说,这是我的 PHP 服务器端指令:
$res = fwrite($apns, $apnsMessage);
有时 $res 是 169,有时是其他数字。有没有人破译这个?
Regardz,姆拉登
根据php 文档:
fwrite() 返回写入的字节数,错误时返回 FALSE。
因此$res包含$apnsMessage已写入的字节或只是 FALSE。
$res
$apnsMessage