我使用 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 包装器。
如何着手解决这个问题?
谢谢你的任何建议...