Access to php.ini file and directories.

roshnit

New member
Joined
Jul 15, 2014
Messages
2
I need access to the php.ini file and the directory that contains it. Where can I find, or how do I get access? Thanks.
 
Use in a shell

Code:
php --ini

or in a browser:

PHP:
<?php
phpinfo();

to see there your php.ini is located.
 
Back
Top