做手機號碼查詢功能時用到file_get_contents出現錯誤:
<code>Warning: file_get_contents(): Unable <span>to</span> find <span>the</span> wrapper <span>"https"</span> - did you forget <span>to</span> enable <span>it</span> when you configured PHP?</code>
登入後複製
這個錯誤分3種解決方案:
- 1.windows下的PHP,只需要到php.ini中把extension=php_openssl.dll前面的;刪掉,重啟服務就可以了。
- 2.linux下的PHP,就必須安裝openssl模組,安裝好了以後就可以存取了。
- 3.如果伺服器你不能修改配置的話,那就使用curl函數來取代file_get_contents函數,當然不是簡單的替換啊。還有對應的參數配置才能正常使用curl函數。
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介紹了Unable to find the wrapper "https"錯誤的解決辦法,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。