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.
在 Linux 命令行上,是否可以运行命令来获取 PHP ini 设置值?
我知道我可以回显phpinfo()或者只是去检查 .ini 文件,但是我看不到要运行的命令会直接在命令行上显示该值。
php -i | grep 'my_value'
或者
php -r "echo ini_get('my_value');"
grep 'my_value' /path/to/php.ini