fix_import_form_size

函数


fix_import_form_size ( $size )
参数
  • (int)
    $size
    Current max size in bytes
    Required:
返回值
  • (int) Max size in bytes
定义位置
  • wp-admin/includes/ms.php
    , line 279
引入
弃用

获取该网站的剩余上传空间。

function fix_import_form_size( $size ) {
	if ( upload_is_user_over_quota( false ) ) {
		return 0;
	}
	$available = get_upload_space_available();
	return min( $size, $available );
}