有没有办法在 IBM Bluemix 上为 php 运行时增加 max_input_vars?

Is there a way to increase max_input_vars for php runtime on IBM Bluemix?

标准 max_input_vars 设置在 PHP 环境中为 1000。我需要增加它,如何在部署到 IBM Bluemix 的应用程序中做到这一点?

要更改默认 php.ini 值,您必须在项目根目录中创建一个 .user.ini 文件并指定要覆盖的参数,例如:

max_input_vars = 1500

然后再次推送您的应用程序:

cf push