What is the maximum size of a file that can be uploaded
using PHP and how can we change this?

Answers were Sorted based on User's Feedback



What is the maximum size of a file that can be uploaded using PHP and how can we change this?..

Answer / amit aggarwal

By default it is 2Mb. But you can change this limitation in
php.ini file.There is a variable 'upload_max_filesize'

Is This Answer Correct ?    53 Yes 1 No

What is the maximum size of a file that can be uploaded using PHP and how can we change this?..

Answer / umapathi

2mb

Is This Answer Correct ?    31 Yes 5 No

What is the maximum size of a file that can be uploaded using PHP and how can we change this?..

Answer / abdul

For the above question few are mentioned 2MB is default and
if we want to change need to change in the variable
'upload_max_filesize at php.ini file, so when i have seen in
that file it is mentioned 128M means how much MB is default

upload_max_filesize = 128M

Is This Answer Correct ?    1 Yes 4 No

What is the maximum size of a file that can be uploaded using PHP and how can we change this?..

Answer / chourasia.rahul84

Its 32 Mb not 2 Mb

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More PHP Interview Questions

How can you insert javascript in php code?

13 Answers   TCS,


What is the method to execute a php script from the command line?

1 Answers  


What are session variables in php?

1 Answers  


What are php parameters?

1 Answers  


Is laravel an oop?

1 Answers  


What software is required for php?

1 Answers  


Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.

1 Answers   Amazon, FGD,


Is md5() is breakable if yes than how?

1 Answers  


How to find the position of the first occurrence of a substring in a string?

1 Answers  


List out some tools through which we can draw E-R diagrams for mysql.

2 Answers  


How to remove white spaces from the beginning and/or the end of a string in php?

1 Answers  


what is constructor in a class, how it is work, how it is call?

2 Answers  


Categories