我在Bluemix上使用PHP运行时。在我的解决方案中,我需要在端口3000上调用Internet上可用的外部API。
我使用curl来管理API调用,使用以下代码:
$endPoint="http://".$this->server.":".$this->port.$endPoint;
$session = curl_init($endPoint);
curl_setopt($session, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($session);
在Bluemix日志中,我发现了以下错误:
Got error 'PHP message: PHP Fatal error: Call to undefined function
curl_init() in /home/vcap/app/htdocs/include/service.php on line 50\n',
referer: http://m2msite.mybluemix.net/login.php
它似乎不是我运行时内定义的curl库 我没有找到任何关于如何在Bluemix运行时中定义curl库的文档。
任何人都可以帮助我以正确的方式配置我的运行时吗?
非常感谢提前
答案 0 :(得分:3)
我找到了解决方案。
在项目根目录下我创建了一个目录 .bp-config
在目录中我创建了一个文件 option.json ,其中包含以下内容:
{
"PHP_EXTENSIONS": ["mysqli","curl"]
}
mysqli 用于mysql库, curl 用于curl库。
所以现在我可以在我的项目中使用curl库
是否有人提供有关此配置步骤的完整文档的链接?
侨
答案 1 :(得分:1)
可以在此处找到与PHP buildpack相关的此类配置的完整文档
https://docs.cloudfoundry.org/buildpacks/php/gsg-php-config.html