最近在研究Hacker News API時遇到一個HTTPS問題。因為所有的Hacker News API都是透過加密的HTTPS
協定存取的,跟普通的HTTP協定不同,當使用PHP裡的函數file_get_contents()來取得API裡提供的數
據時,出現錯誤,使用的程式碼是這樣的:
$data =file_get_contents("https://hacker-news.firebaseio .com/v0/topstories.json?
print=pretty");
......
......
當執行上面的程式碼是遇到下面的錯誤提示:
PHP Warning: file_get_contents(): Unable to find thewrapper "https" - did you forget to
enable it when youconfigured PHP?
為什麼會出現這樣的錯誤?
在網上經過一番搜索,發現遇到這樣錯誤的人還不少,問題很直接,是因為在PHP的配置文件裡沒有開
啟動一個參數,在我本機上是/apache/bin/php.ini裡的;extension=php_openssl.dll這一項,需要將前
面的分號去掉。你可以用下面的腳本來檢查你的PHP環境的配置:
$w = stream_get_wrappers();
echo 'openssl: ' ') ? 'yes':'no', "n";
echo 'http wrapper: ',in_array('http', $w) ? 'yes':'no', "n";
echo 'https wrapper: ',in_array('https', $w) ? 'yes':'no', "n";
echo 'wrappers: ',var_dump($ w);
運行上面的這個腳本片段,在我的機器上得到的結果是:
openssl: no http wrapper: yes
https wrapper: no
wrappers: array(10) {
[0]=>
[0]=>
) "php"
[1]=>
string(4) "file"
[2]=>
[2]=>
[2]=>
glob"
[3]=>
string(4) "data"
[4]=>
[4]=>
[4]=>
[5]=>
string(3) "ftp"
[6]=>
string(3) “ > [7]=> string(13) "compress.zlib" [8]=> > [8]=> string(14) "compress. [9]=> string(4) "phar"}替代方案 發現錯誤,改正錯誤,這很簡單,困難的是,發現錯誤後無法改正錯誤。我原本是想將這個腳本方法遠程主機上,但我無法修改遠端主機的PHP配置,結果是,我無法使用這一方案,但我們不能在一棵樹上 curl_setopt($ch, CURLOPT_FOLLOWLOCATION,true);
curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,TRUE); $result = curl_exec($ch);
>
}
免費領取LAMP兄弟連原創PHP影片教學光碟/《細講PHP》精要版,詳情諮詢官網客服:
http://www.lampbrother.net
http://yun.itxdl.cn/online/cto/index.php?u=5 這
,是一顆牛X是一顆牛X >的課程 CTO課程
http://yun. /online/server/index.php?u=5 行動網路伺服器端開發課程
http: //yun.itxdl.cn/online/weixin/index.php?u=5 微信發展課程
http://yun.itxdl.cn/online/yingxiao/index.php?u=5微行銷課程
http://yun.itxdl.cn/online/phpcms/index.php?u=5phpcms二次開發課程
|