0

我使用 codeigniter 框架,我在控制器中放置了一个脚本来强制下载某个文件夹中的现有文本文件。连接使用HTTPS协议。当我点击从服务器下载文本文件时,出现错误,如下:

Message: file_get_contents() [function.file-get-contents]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP?
Filename: controllers/process.php

当我打印"var_dump(stream_get_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(13) "compress.zlib"
  [7]=>
  string(14) "compress.bzip2"
  [8]=>
  string(4) "phar"
  [9]=>
  string(3) "zip"
}

所以数组中不存在 https 包装器。

如何着手解决这个问题?

谢谢你的任何建议...

4

2 回答 2

0

也许您无权访问 https 协议。

试试这个如何让 file_get_contents() 与 HTTPS 一起工作?

或使用 curl 或套接字

于 2012-06-19T12:44:10.253 回答
0

确保php_openssl.dllphp_openssl.so 已启用。

于 2014-02-11T05:21:17.637 回答