牛骨文教育服务平台(让学习变的简单)
博文笔记

PHP: Unable to find the wrapper "https"

创建时间:2013-09-17 投稿人: 浏览次数:2843

http://cweiske.de/tagebuch/php-error-https-wrapper.htm

PHP may tell you the following:
 
   PHP Warning: file_get_contents():
Unable to find the wrapper "https" - did you forget
to enable it when you configured PHP?

 
   This means that PHP is not able to do
   secure HTTP requests.
   Reason for this is that it has no
   SSL library to use.
 
 
  Unix
 
   Recompile PHP with the --with-openssl flag.
 

  Windows
 
   Edit your php.ini file and add the following line:
 
  extension=php_openssl.dll

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。