PHP Velho Oeste 2024

openssl_csr_get_public_key

(PHP 5 >= 5.2.0, PHP 7)

openssl_csr_get_public_keyReturns the public key of a CERT

설명

resource openssl_csr_get_public_key ( mixed $csr [, bool $use_shortnames = true ] )
Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

add a note add a note

User Contributed Notes 1 note

up
-2
php at siemenroorda dot nl
14 years ago
Function openssl_pkey_get_details can read this resource. Try:

<?php
  print_r
(openssl_pkey_get_details(openssl_csr_get_public_key($csr)));
?>
To Top