openssl_pkcs7_read
(PHP 7 >= 7.2.0, PHP 8)
openssl_pkcs7_read — 將 PKCS7 檔案導出為 PEM 格式證書的陣列
說明
openssl_pkcs7_read(string
$input_filename
, array &$certificates
): bool
警告
本函式還未編寫文件,僅有參數列表。
參數
-
input_filename
-
想要解析的字串數據(p7b 格式)。
-
certificates
-
PEM 格式證書的陣列,來源於輸入的 p7b 數據。
返回值
成功時返回 true
, 或者在失敗時返回 false
。
範例
示例 #1 根據 P7B 檔案獲取 PEM 陣列
<?php
$file = 'certs.p7b';
$f = file_get_contents($file);
$p7 = array();
$r = openssl_pkcs7_read($f, $p7);
if ($r === false) {
printf("ERROR: %s is not a proper p7b file".PHP_EOL, $file);
for($e = openssl_error_string(), $i = 0; $e; $e = openssl_error_string(), $i++)
printf("SSL l%d: %s".PHP_EOL, $i, $e);
exit(1);
}
print_r($p7);
?>