使用 PHP 从 p12 证书文件获取信息
Get information from p12 certificate file using PHP
我的网页有一个登录表单,该表单请求 p12 文件以使用证书验证您的身份。
如何使用 PHP 代码获取 p12 信息?
我想这会对你有所帮助。
$certs = array();
$pkcs12 = file_get_contents( "pkcs12file.pem" );
openssl_pkcs12_read( $pkcs12, $certs, "" );
print_r( $certs );
文档中还有更多内容:PHP.net doc
我的网页有一个登录表单,该表单请求 p12 文件以使用证书验证您的身份。
如何使用 PHP 代码获取 p12 信息?
我想这会对你有所帮助。
$certs = array();
$pkcs12 = file_get_contents( "pkcs12file.pem" );
openssl_pkcs12_read( $pkcs12, $certs, "" );
print_r( $certs );
文档中还有更多内容:PHP.net doc