Skip to content

Instantly share code, notes, and snippets.

@plasticbrain
Created October 12, 2012 19:25
Show Gist options
  • Select an option

  • Save plasticbrain/3880991 to your computer and use it in GitHub Desktop.

Select an option

Save plasticbrain/3880991 to your computer and use it in GitHub Desktop.
PHP: max upload size
<?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