Fopen accept self signed certificate

折月煮酒 提交于 2020-05-29 04:00:48

问题


i would like to get the result of my page in https in a php variable but the fopen fonction return false;

i think this error can be product by the ssl certifacte which is self signed

fopen("https://192.168.1.1:8443", "rb"))

Warning: fopen(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

Is it a php ssl configuration to accept all certificate ?


回答1:


see Error when loading external xml file with php via https : SSL3_GET_SERVER_CERTIFICATE

Export your self-signed certificate PEM-encoded and append it to ca-bundle.crt (or if there is no ca-bundle.crt yet, just rename your export file)

Then use

$context = stream_context_create(array('ssl'=>array(
    'verify_peer' => true,
    'cafile' => '/path/to/ca-bundle.crt'
)));
$fd = fopen("https://192.168.1.1:8443", "rb", false, $context);

see SSL context options and stream_context_create




回答2:


Check this - http://php.net/manual/en/function.stream-context-create.php

<?php
$opts=array(
    "ssl"=>array(
        "verify_peer"=>false,
        "verify_peer_name"=>false,
    ),
);  

$response = fopen("https://192.168.1.1:8443", 'rb', false, stream_context_create($opts));

echo $response; ?>


来源:https://stackoverflow.com/questions/32820376/fopen-accept-self-signed-certificate

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!