Learning in Command Line of php.ini Way

First of all, if you run this command in the terminal on a machine with PHP, you can have the values of when phpinfo() function is run

php -i

To find where is the php.ini file. To find this in command line you just need to run this command

php -i | grep 'Configuration File'

If you are going to do this on a Windows machine, you can use it in this way

php -i|find/i"configuration file"

 

Comments

There are no comments, make the firs comment