upload_is_file_too_big( array $upload )
Check whether an upload is too big.
Parameters
- $upload
-
(Required)
Return
(string|array) If the upload is under the size limit, $upload is returned. Otherwise returns an error message.
Source
File: wp-includes/ms-functions.php
function upload_is_file_too_big( $upload ) {
if ( ! is_array( $upload ) || defined( 'WP_IMPORTING' ) || get_site_option( 'upload_space_check_disabled' ) )
return $upload;
if ( strlen( $upload['bits'] ) > ( KB_IN_BYTES * get_site_option( 'fileupload_maxk', 1500 ) ) ) {
return sprintf( __( 'This file is too big. Files must be less than %d KB in size.' ) . '<br />', get_site_option( 'fileupload_maxk', 1500 ) );
}
return $upload;
}
Changelog
Version | Description |
---|---|
WP-MU | Introduced. (3.0.0) |