IBM bluemix Cloud Foundry php 缺少 https 支持?
IBM bluemix Cloud Foundry php lack https support?
当在 cf 上使用下面的函数时,如果 $url 以 "https:" 开头,该方法总是 returns false:
file_get_contents($url);
如果我将 $url 从 "https" 更改为 "http",那么它就可以工作了。这是 CF 的问题还是我可以使用 "https" 从其他站点获取内容?
要从协议 https 获取内容,您需要从 php.ini file.Did 启用 openssl 扩展,您检查是否已启用。
您必须在 .bp-config/options.json 中启用 openssl 支持添加相关扩展
例如
{
"PHP_EXTENSIONS": [" openssl"]
}
当在 cf 上使用下面的函数时,如果 $url 以 "https:" 开头,该方法总是 returns false:
file_get_contents($url);
如果我将 $url 从 "https" 更改为 "http",那么它就可以工作了。这是 CF 的问题还是我可以使用 "https" 从其他站点获取内容?
要从协议 https 获取内容,您需要从 php.ini file.Did 启用 openssl 扩展,您检查是否已启用。
您必须在 .bp-config/options.json 中启用 openssl 支持添加相关扩展 例如
{
"PHP_EXTENSIONS": [" openssl"]
}