Answers for "file_get_contents(): ssl operation failed with code 1. openssl"

PHP
1

PHP Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages:

$options=array(
    "ssl"=>array(
        "verify_peer"=>false,
        "verify_peer_name"=>false,
    ),
);  
$r = file_get_contents("https://yoursite.com/", false, stream_context_create($options));
Posted by: Guest on February-16-2021

Code answers related to "file_get_contents(): ssl operation failed with code 1. openssl"

Browse Popular Code Answers by Language