I search the path where the php.ini file is located in our Linux Ubuntu server, and I found many php.ini when executing the command find / -name php.ini . So how to know exactly from a php script web page where the php.ini is located ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use php_ini_loaded_file() Taken from php.net:
You may also want to check php_ini_scanned_files() |
|||
|
|
|
You have to use the php method
php website example:
Source: php site |
|||||||
|
|
|
just put a file like this:
Then look for
you'll see full path for php.ini file |
|||
|
|

php --helpon the command line. – Sverri M. Olsen Jan 28 at 8:37