| 5 file.inc | file_upload_max_size() |
| 6 file.inc | file_upload_max_size() |
| 7 file.inc | file_upload_max_size() |
| 8 file.inc | file_upload_max_size() |
Determine the maximum file upload size by querying the PHP settings.
Return value
A file size limit in bytes based on the PHP upload_max_filesize and post_max_size
Related topics
4 calls to file_upload_max_size()
File
- includes/
file.inc, line 1048 - API for handling file uploads and server file management.
Code
function file_upload_max_size() {
static $max_size = -1;
if ($max_size < 0) {
$upload_max = parse_size(ini_get('upload_max_filesize'));
$post_max = parse_size(ini_get('post_max_size'));
$max_size = ($upload_max < $post_max) ? $upload_max : $post_max;
}
return $max_size;
}
Login or register to post comments