php file_get_contents 忽略证书
2019-03-29 本文已影响0人
dayeshisir
$stream_opts = [
"ssl" => [
"verify_peer"=>false,
"verify_peer_name"=>false,
]
];
$response = file_get_contents("https://www.example.com",
false, stream_context_create($stream_opts));
参考:
1、file_get_contents 函数证书问题;