file_get_contents を直接使用すると、エラーが報告されます。
コードをコピーします。 コードは次のとおりです:
$url = (https://xxx.com");
file_get_contents($url) );
エラー:
警告: file_get_contents(https://xxx.com) [function.file-get-contents]: ストリームを開けませんでした: D:wampwwwgrabber_clientindex.php の行 3 にそのようなファイルまたはディレクトリはありません
curl を使用することができます:
コードをコピーします コードは次のとおりです:
$url = (https://xxx.com)
$ch =curl_init(); $ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
print_r($result); >
次の 2 つの文に注目します:
コードをコピーします
コードは次のとおりです:
curl_setopt($ch, CURLOPT_SSL); _VERIFYHOST、false );
http://www.bkjia.com/PHPjc/321611.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/321611.html
技術記事 file_get_contents を直接使用すると、エラーが報告されます。次のようにコードをコピーします: $url = (https://xxx.com"); file_get_contents($url); エラー: 警告: file_get_contents(https://xxx. com) [機能.. .