Guest User

Untitled

a guest
Sep 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. //Simple Function to Get Max Upload Size from PHP
  3.  
  4. $max_upload = min(ini_get('post_max_size'), ini_get('upload_max_filesize'));
  5. $max_upload = str_replace('M', '', $max_upload);
  6. $max_upload = $max_upload * 1024;
Add Comment
Please, Sign In to add comment