从APNS-php错误中检索令牌

我正在尝试实现APNS-
PHP,并发现在我的测试环境中我有一些无效的令牌(因为测试设备已转移到生产中).

我需要从数组中的序列化对象获取令牌ID,因为我想捕获这种情况并从数据库中删除无效令牌.我使用以下代码,但这不起作用:

    $aErrorQueue = $push->getErrors();
    if (!empty($aErrorQueue)) {
        foreach($aErrorQueue as $error){            
            foreach($error['ERRORS'] as $err){
                $message .=  $err['statusMessage'] . " ";
                if($err['statusCode'] == 8){
                    $phones = Phone::getPhonesWithToken($error['MESSAGE']['_aDeviceTokens:protected'][0]);
                    Phone::setToken($phones[0]['id'], "");      
                }
            }   
        }
    }

问题是APNS_Message是$error [‘MESSAGE’]中的序列化对象,我不记得如何访问该对象中的令牌……

Var转储:

[“MESSAGE”]=>
object(ApnsPHP_Message)#9 (8) {
[“_bAutoAdjustLongPayload:protected”]=>
bool(true)
[“_aDeviceTokens:protected”]=>
array(1) { [0]=> string(64)
“018E4B9CB8CF73341CE4EBE7138E25E605CD80FB74B3A9701CE5CCA6D9363F3A”
} [“_sText:protected”]=> NULL
[“_nBadge:protected”]=> int(256)
[“_sSound:protected”]=> NULL
[“_aCustomProperties:protected”]=>
NULL [“_nExpiryValue:protected”]=>
int(604800)
[“_mCustomIdentifier:protected”]=>
string(17) “Message-Badge-004” }

最佳答案 $错误[ ‘MESSAGE’] – > _aDeviceTokens [0]

点赞