php獲取遠(yuǎn)程https內(nèi)容時(shí)提示PHP Warning: copy(): Unable to find the wrapper “https“ 解決方法
異常信息:
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
PHP Warning: copy(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in Command line code on line 1
PHP Stack trace:
PHP 1. {main}() Command line code:0
PHP 2. copy($source_file = 'https://getcomposer.org/installer', $destination_file = 'composer-setup.php') Command line code:1
Warning: copy(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in Command line code on line 1
Call Stack:
0.0001 388024 1. {main}() Command line code:0
0.0008 388024 2. copy($source_file = 'https://getcomposer.org/installer', $destination_file = 'composer-setup.php') Command line code:1
異常原因
這個(gè)異常是因?yàn)楫?dāng)前的php沒(méi)有配置openssl模塊, 所以在php訪問(wèn)https的內(nèi)容時(shí)就提示 Unable to find the wrapper "https" 異常。
解決方法: 安裝 openssl擴(kuò)展
在macos中通過(guò)macport安裝php后,默認(rèn)是沒(méi)有安裝openssl擴(kuò)展的, 需要我們手動(dòng)安裝一下這個(gè)openssl的擴(kuò)展。
# 首先確定當(dāng)前php版本 php -version # 然后安裝 openssl擴(kuò)展 , 這里以php7.2版本為例 sudo port install php72-openssl
如果你的php非port安裝的,解決方法也是一樣的,安裝對(duì)應(yīng)php的 openssl 擴(kuò)展即可。
通過(guò)port search查找可用的php openssl擴(kuò)展包參考
命令: port search --name --line --regex '^php(\d+)-openssl'
以上就是php獲取遠(yuǎn)程https內(nèi)容時(shí)提示PHP Warning: copy(): Unable to find the wrapper “https“ 解決方法的詳細(xì)內(nèi)容,更多關(guān)于php獲取https提示Unable to find的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
PHP中auto_prepend_file與auto_append_file用法實(shí)例分析
這篇文章主要介紹了PHP中auto_prepend_file與auto_append_file用法,較為詳細(xì)的講述了配置信息的休息以及函數(shù)的用法和注意事項(xiàng),需要的朋友可以參考下2014-09-09php實(shí)現(xiàn)登錄頁(yè)面的簡(jiǎn)單實(shí)例
在本篇文章里小編給大家分享的是關(guān)于php實(shí)現(xiàn)登錄頁(yè)面的簡(jiǎn)單實(shí)例以及相關(guān)知識(shí)點(diǎn),有需要的朋友們學(xué)習(xí)下。2019-09-09php提示W(wǎng)arning:mysql_fetch_array() expects的解決方法
這篇文章主要介紹了php提示W(wǎng)arning:mysql_fetch_array() expects的解決方法,是一個(gè)比較典型的php程序錯(cuò)誤排查案例,具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2014-12-12WordPress中用于獲取文章信息以及分類(lèi)鏈接的函數(shù)用法
這篇文章主要介紹了WordPress中用于獲取文章信息以及分類(lèi)鏈接的函數(shù)用法,分別是get_post()和get_category_link()的使用,需要的朋友可以參考下2015-12-12PHP實(shí)現(xiàn)根據(jù)設(shè)備類(lèi)型自動(dòng)跳轉(zhuǎn)相應(yīng)頁(yè)面的方法
這篇文章主要介紹了PHP實(shí)現(xiàn)根據(jù)設(shè)備類(lèi)型自動(dòng)跳轉(zhuǎn)相應(yīng)頁(yè)面的方法,是非常實(shí)用的功能,需要的朋友可以參考下2014-07-07PHP中的排序函數(shù)sort、asort、rsort、krsort、ksort區(qū)別分析
在php中自帶了大量了數(shù)組排序函數(shù),下面我們一一來(lái)介紹一下關(guān)于php數(shù)組排序的用法吧。2014-08-08