openssl_csr_export_to_file

(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)

openssl_csr_export_to_fileCSR 导出到文件

说明

openssl_csr_export_to_file(OpenSSLCertificateSigningRequest|string $csr, string $output_filename, bool $no_text = true): bool

openssl_csr_export_to_file() 获取由 csr 表示的证书签名请求,并将其以 PEM 格式保存到名为 output_filename 的文件中。

参数

csr

有关有效值的列表,请参见 CSR 参数

output_filename

输出文件的路径。

no_text

可选参数 notext 影响输出的详细程度;如果为 false,则输出中将包含额外的可读信息。 notext 的默认值为 true

返回值

成功时返回 true,失败时返回 false

变更日志

版本 说明
8.0.0 csr 现在接受 OpenSSLCertificateSigningRequest 实例;以前接受 资源 类型为 OpenSSL X.509 CSR

示例

示例 #1 openssl_csr_export_to_file() 示例

<?php
$subject
= array(
"commonName" => "example.com",
);
$private_key = openssl_pkey_new(array(
"private_key_bits" => 2048,
"private_key_type" => OPENSSL_KEYTYPE_RSA,
));
$csr = openssl_csr_new($subject, $private_key, array('digest_alg' => 'sha384') );
openssl_pkey_export_to_file($private_key, 'example-priv.key');
// 除了主题,CSR 还包含与私钥相对应的公钥
openssl_csr_export_to_file($csr, 'example-csr.pem');
?>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top