openssl_x509_export_to_file

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

openssl_x509_export_to_file将证书导出到文件

描述

openssl_x509_export_to_file(OpenSSLCertificate|string $certificate, string $output_filename, bool $no_text = true): bool

openssl_x509_export_to_file()certificate 存储到名为 output_filename 的文件中,以 PEM 编码格式。

参数

x509

有关有效值的列表,请参阅 密钥/证书参数

output_filename

输出文件的路径。

no_text

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

返回值

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

变更日志

版本 描述
8.0.0 certificate 现在接受 OpenSSLCertificate 实例;以前接受的是类型为 OpenSSL X.509资源
添加注释

用户贡献的注释

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