最近、Hacker News API を調査中に HTTPS の問題に遭遇しました。すべての Hacker News API は通常の HTTP プロトコルとは異なる暗号化された HTTPS プロトコルを介してアクセスされるため、PHP の関数 file_get_contents() を使用して API で提供されるデータを取得すると、次のコードがエラーになります。 :
<?php $data = file_get_contents("https://www.liqingbo.cn/son?print=pretty"); ......
上記のコードを実行すると、次のエラー メッセージが表示されます:
PHP Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?
以下はスクリーンショットです:
なぜこのようなエラーが発生するのでしょうか?
インターネットで検索したところ、多くの人がこのエラーに遭遇していることがわかりました。私のローカル マシンでは /apache/bin/php で有効なパラメータがないためです。 ini の ;extension=php_openssl.dll 項目で、先行するセミコロンを削除する必要があります。次のスクリプトを使用して、PHP 環境の構成を確認できます:
$w = stream_get_wrappers();
echo 'openssl: ', extension_loaded ('openssl') 'yes':'no', " n";
echo 'http ラッパー: ', in_array('http', $w) ? 'yes':'no', "n";
echo 'https ラッパー: ', in_array('https', $ w) ? 'yes':'no', "n";
echo 'wrappers: ', var_dump($w);
上記のスクリプト スニペットを私のマシンで実行し、結果を取得します。
openssl: no http wrapper: yes https wrapper: no wrappers: array(10) { [0]=> string(3) "php" [1]=> string(4) "file" [2]=> string(4) "glob" [3]=> string(4) "data" [4]=> string(4) "http" [5]=> string(3) "ftp" [6]=> string(3) "zip" [7]=> string(13) "compress.zlib" [8]=> string(14) "compress.bzip2" [9]=> string(4) "phar" }
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
function getHTTPS($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_REFERER, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $result = curl_exec($ch); curl_close($ch); return $result; }