(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
openssl_x509_export — Exports a certificate as a string
$certificate
, string &$output
, bool $no_text
= true
): bool
openssl_x509_export() stores
certificate
into a string named by
output
in a PEM encoded format.
x509
Список можливих значень є в параграфі Параметри ключа/сертифіката.
output
On success, this will hold the PEM.
no_text
Необов'язковий параметр notext
впливає на кількість
тексту у виводі. Якщо дорівнює false
, то до виводу буде включена додаткова
зрозуміла людині інформація. Початковим значенням параметра
notext
є true
.
Версія | Опис |
---|---|
8.0.0 |
certificate accepts an OpenSSLCertificate instance now;
previously, a resource of type OpenSSL X.509 was accepted.
|