openssl_pkcs12_read
(PHP 5 >= 5.2.2, PHP 7, PHP 8)
openssl_pkcs12_read — 將 PKCS#12 證書儲存區解析到陣列中
說明
openssl_pkcs12_read(string
$pkcs12
, array &$certs
, string $pass
): bool
openssl_pkcs12_read() 將pkcs12
提供的PKCS#12證書儲存區解析到以certs
命名的變數中。
參數
-
pkcs12
-
證書儲存內容,而不是它的檔名。
-
certs
-
成功,將儲存證書儲存數據
-
pass
-
用來解鎖 PKCS#12 檔案的解密密碼
返回值
成功時返回 true
, 或者在失敗時返回 false
。
範例
示例 #1 openssl_pkcs12_read() 範例
<?php
if (!$cert_store = file_get_contents("/certs/file.p12")) {
echo "Error: Unable to read the cert file\n";
exit;
}
if (openssl_pkcs12_read($cert_store, $cert_info, "my_secret_pass")) {
echo "Certificate Information\n";
print_r($cert_info);
} else {
echo "Error: Unable to read the cert store.\n";
exit;
}
?>