?you're on Linux, you can find all loaded configuration files by typing this in shell:
php -r "print phpinfo();" | grep ".ini"
UPDATE: As mentioned in comments, this can be even more accurate:
php -i | grep ini
?you're on Linux, you can find all loaded configuration files by typing this in shell:
php -r "print phpinfo();" | grep ".ini"
UPDATE: As mentioned in comments, this can be even more accurate:
php -i | grep ini