OpenSSL 函数
在线手册:中文 英文
PHP手册

openssl_csr_get_public_key

(PHP 5 >= 5.2.0)

openssl_csr_get_public_keyReturns the public key of a CERT

说明

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

本函数还未编写文档,仅有参数列表。


OpenSSL 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Returns the public key of a CERT

用户评论:

php at siemenroorda dot nl (29-Sep-2009 03:44)

Function openssl_pkey_get_details can read this resource. Try:

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