标签: php mongodb ibm-cloud
我在Bluemix上使用PHP运行时,我需要访问MongoDB。为此,我想使用Mongo库。通常,您需要安装自己的扩展程序并将extension=mongo.so添加到php.ini。 由于您无法SSH运行时,否则需要执行此操作。 我怎样才能在运行时安排它?
extension=mongo.so
php.ini
答案 0 :(得分:2)
您实际上无需编辑php.ini。
您可以使用PHP buildpack安装扩展。您需要在名为options.json的文件夹中创建名为.bp-config的文件。完整路径为.bp-config/options.json。
options.json
.bp-config
.bp-config/options.json
该文件需要如下所示。
{ "PHP_EXTENSIONS": ["mongo", "php_mongo"] }
然后安装了Mongo,我已经在下面为Mongo复制了我的phpinfo输出。
phpinfo