Which PHP Ini file is using my WAMP webpage?

I just ran a PHP.ini file search on my server "C: \ WAMP" and tried it! there are so many php.ini files!

How do I know which ini file is being used by a web page?

Thanks for any answer

+5
source share
1 answer

you can find it in phpinfo () file

create info.php file

<?php
phpinfo();

and call it from the web server

phpinfo ini file

+18
source

All Articles