Linux method to modify the PHP configuration file: first execute the command "find / -name php.ini" to find the php.ini file; then print out "phpinfo()"; finally modify the php configuration file. The statement is "local/php/lib/php.ini".
When it comes to searching, of course the first thing that comes to mind is the find command. Execute the following command to find the php.ini file
find / -name php.ini
However, three php.ini files are found. Which one is the configuration file used by the currently running PHP? PHP provides two methods for use.
php --ini
You can use php --help to view this command
For this method, you can also view it on the command line, there are two ways:
php -i |grep php.ini //php -i其实就是输出phpinfo php -r "phpinfo();" |grep php.ini
vim /usr/local/php/lib/php.ini
PHP中文网!
The above is the detailed content of Modify the PHP configuration file path under Linux. For more information, please follow other related articles on the PHP Chinese website!