array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.openssl-x509-parse.php', 1 => 'openssl_x509_parse', 2 => 'Parse an X509 certificate and return the information as an array', ), 'up' => array ( 0 => 'ref.openssl.php', 1 => 'Функції OpenSSL', ), 'prev' => array ( 0 => 'function.openssl-x509-free.php', 1 => 'openssl_x509_free', ), 'next' => array ( 0 => 'function.openssl-x509-read.php', 1 => 'openssl_x509_read', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/openssl/functions/openssl-x509-parse.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

openssl_x509_parse

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

openssl_x509_parseParse an X509 certificate and return the information as an array

Опис

openssl_x509_parse(OpenSSLCertificate|string $certificate, bool $short_names = true): array|false

openssl_x509_parse() returns information about the supplied certificate, including fields such as subject name, issuer name, purposes, valid from and valid to dates etc.

Параметри

certificate

X509 certificate. See Key/Certificate parameters for a list of valid values.

short_names

short_names controls how the data is indexed in the array - if short_names is true (the default) then fields will be indexed with the short name form, otherwise, the long name form will be used - e.g.: CN is the shortname form of commonName.

Значення, що повертаються

The structure of the returned data is (deliberately) not yet documented, as it is still subject to change.

Журнал змін

Версія Опис
8.4.0 Parsing certificate with no seconds in UTCTime is no longer allowed for any OpenSSL version. It was already disallowed for OpenSSL version 3.3+.
8.0.0 certificate accepts an OpenSSLCertificate instance now; previously, a resource of type OpenSSL X.509 was accepted.