php-SSL例程:tls_process_server_certificate:证书验证失败

使用file_get_contents("https://...")和curl函数的几个脚本(在不同服务器上)停止工作。

PHP Warning:  file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages:
error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed in /home/domain/public_html/script.php on line 19

使用以下方法“解决”了问题:

$arrContextOptions=array(
    "ssl"=>array(
       "verify_peer"=>false,
       "verify_peer_name"=>false,
    ),
); 
file_get_contents("https://...", false, stream_context_create($arrContextOptions));