Reputation: 854
I use ini_get('upload_max_filesize')
to get the value of upload_max_filesize
but it returns just 10485760.
Even I edit the upload_max_filesize
in php.ini
and restart Xampp's Apache I do not see a change.
In php.ini
I have upload_max_filesize=100M
and even I increased it too 200M.
ini_get('upload_max_filesize')
just returns same value.
I am using Xampp v3.2.2 on Windows.
Upvotes: 0
Views: 253
Reputation: 1627
<?php phpinfo() ?>
to phpinfo.php file and locate it to root directory of your web server. Upvotes: 1