Created
October 12, 2012 19:25
-
-
Save plasticbrain/3880991 to your computer and use it in GitHub Desktop.
PHP: max upload size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $max_upload_in_mb = min((int)(ini_get('upload_max_filesize')), (int)(ini_get('post_max_size')), (int)(ini_get('memory_limit'))); | |
| echo $max_upload_in_mb . 'mb'; | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment