Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which PHP Ini file does my WAMP webpage uses?

Tags:

php

wamp

ini

I just ran a search for PHP.ini file in my "C:\WAMP" server and gosh! there's so many PHP.ini files!

How do you know which of the ini files are being used by the webpage?

Thanks you for any response

like image 237
user1034912 Avatar asked May 10 '12 05:05

user1034912


People also ask

What PHP ini file is being used?

The php. ini file is the default configuration file used for running applications that require PHP. It is an effective way to work on PHP's functionality. It is used to control variables like file timeouts, sizes of the upload, and the limits of the resource on which it works.


1 Answers

you can find it in phpinfo() output

create file info.php

<?php
phpinfo();

and call it from web server

phpinfo ini file

like image 89
Electronick Avatar answered Sep 28 '22 01:09

Electronick