基本上,我需要在php.ini中覆盖一个临界值。命令行PHP的行为是使用它检测到的第一个php.ini,而不是其他人。
有什么想法吗?可以命令行php只是不以级联方式使用ini文件吗?
注意,这是值:
auto_prepend_file=...
我的命令行如下:
php -c path\to\main\ini;path\to\special\ini -f thescript.php
答案 0 :(得分:0)
您始终可以使用-d
开关覆盖选定的ini值:
php -c path\to\php.ini -d auto_prepend_file=C:\prepend.php -f thescript.php