Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在 bluemix 上部署我的应用程序并得到“调用未定义函数 finfo_open()”
哪种方式在 bluemix 的模块列表中包含 fileinfo.so 是正确的
您必须将 PHP 模块添加fileinfo到options.json文件中。
fileinfo
options.json
如果您还没有该文件,您可以在应用程序根目录options.json的目录下创建它。.bp-config
.bp-config
该options.json文件应具有以下格式:
{ "PHP_EXTENSIONS": [ "fileinfo" ] }
创建此文件后,使用 cf push 再次推送您的应用程序。