2015-04-18, 07:20:20
here is the new function in 3.4 to get uplaod size, maybe it will help.
PHP Code:
/**
* get the maximum upload size as defined by php ini
* @since 3.4
* @return int max bytes
*/
function getMaxUploadSize(){
$max_upload = toBytes(ini_get('upload_max_filesize'));
$max_post = toBytes(ini_get('post_max_size'));
$memory_limit = toBytes(ini_get('memory_limit'));
$upload_mb = min($max_upload, $max_post, $memory_limit);
return $upload_mb;
}