openssl_x509_export_to_file
PHP function
Edit on GitHub ✎
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
Exports a certificate to file
Description
openssl_x509_export_to_file(OpenSSLCertificate|string $certificate, string $output_filename, bool $no_text = true): bool
openssl_x509_export_to_file() stores certificate into a file named by output_filename in a PEM encoded format.
Parameters
output_filenamePath to the output file.
no_textParam-notext
Return Values
Success
Changelog
| Version | Description |
|---|---|
| 8.0.0 | certificate accepts an OpenSSLCertificate instance now; previously, a Resource of type OpenSSL X.509 was accepted. |