(PHP 7 >= 7.2.0, PHP 8)
openssl_pkcs7_read — Export the PKCS7 file to an array of PEM certificates
openssl_pkcs7_read(string $data, array &$certificates): bool
This function is currently not documented; only its argument list is available.
dataThe string of data you wish to parse (p7b format).
certificatesThe array of PEM certificates from the p7b input data.
Example #1 Get a PEM array from a P7B file
<?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);
?>
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.openssl-pkcs7-read.php