"PHP openssl get cert locations()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
3번째 줄: 3번째 줄:
* 기본 사용가능한 인증서 위치를 조회하는 PHP 함수
* 기본 사용가능한 인증서 위치를 조회하는 PHP 함수


<source lang='console'>
<syntaxhighlight lang='console'>
[root@zetaiki ~]# php -r "print_r(openssl_get_cert_locations());"
[root@zetaiki ~]# php -r "print_r(openssl_get_cert_locations());"
Array
Array
16번째 줄: 16번째 줄:
     [ini_capath] =>  
     [ini_capath] =>  
)
)
</source>
</syntaxhighlight>


==참고 자료==
==참고==
* http://php.net/manual/en/function.openssl-get-cert-locations.php
* http://php.net/manual/en/function.openssl-get-cert-locations.php


[[분류: PHP]]
[[분류: PHP]]
[[분류: SSL]]
[[분류: SSL]]

2020년 11월 2일 (월) 02:35 기준 최신판

1 개요[ | ]

PHP openssl_get_cert_locations()
  • 기본 사용가능한 인증서 위치를 조회하는 PHP 함수
[root@zetaiki ~]# php -r "print_r(openssl_get_cert_locations());"
Array
(
    [default_cert_file] => /etc/pki/tls/cert.pem
    [default_cert_file_env] => SSL_CERT_FILE
    [default_cert_dir] => /etc/pki/tls/certs
    [default_cert_dir_env] => SSL_CERT_DIR
    [default_private_dir] => /etc/pki/tls/private
    [default_default_cert_area] => /etc/pki/tls
    [ini_cafile] => 
    [ini_capath] => 
)

2 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}