openssl_get_cert_locations()函数是PHP中的内置函数,用于获取证书位置。此函数返回一个数组,其中包含有关将在SSL证书中搜索的可用证书位置的信息。
用法:
array openssl_get_cert_locations( void )
参数:此函数不接受任何参数。
返回值:此函数返回具有可用证书位置的数组。
以下示例程序旨在说明PHP中的openssl_get_cert_locations()函数:
例:
PHP
<?php
var_dump(openssl_get_cert_locations());
// openssl get cert location represent in array
return openssl_get_cert_locations();
?>
输出:
array(8) { ["default_cert_file"]=> string(21) "/usr/lib/ssl/cert.pem" ["default_cert_file_env"]=> string(13) "SSL_CERT_FILE" ["default_cert_dir"]=> string(18) "/usr/lib/ssl/certs" ["default_cert_dir_env"]=> string(12) "SSL_CERT_DIR" ["default_private_dir"]=> string(20) "/usr/lib/ssl/private" ["default_default_cert_area"]=> string(12) "/usr/lib/ssl" ["ini_cafile"]=> string(0) "" ["ini_capath"]=> string(0) "" }
参考: https://www.php.net/manual/en/function.openssl-get-cert-locations.php
相关用法
- d3.js d3.rgb()用法及代码示例
- p5.js nfs()用法及代码示例
- PHP Ds\Map first()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- PHP pi( )用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map sum()用法及代码示例
- p5.js abs()用法及代码示例
- p5.js box()用法及代码示例
- PHP tan( )用法及代码示例
- PHP Ds\Set sum()用法及代码示例
- PHP sin( )用法及代码示例
- p5.js sin()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP Ds\Set get()用法及代码示例
注:本文由纯净天空筛选整理自shubham_singh大神的英文原创作品 PHP openssl_get_cert_locations() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。