如何在PHP中验证APNS服务器证书是否有效?
APNS证书是APNS推送证书(来自Apple)和PKCS12格式的私钥的串联。鉴于我有私钥的密码,我可以从证书中获取信息(例如到期日期)吗?
我试过了:
// to read the APNS certificate content
$results = array();
$is_success = openssl_pkcs12_read(file_get_contents($cert_path), $results, $password);
// then $results will contain certificate information
但是如何将APNS推送证书与私钥分开?