get_upload_space_available

函数
get_upload_space_available ( No parameters )
返回值
  • (int) of upload space available in bytes
定义位置
相关方法
is_upload_space_availableget_theme_update_availabletheme_update_availableget_space_allowedupload_space_setting
引入
3.0.0
弃用
-

get_upload_space_available: 这个函数返回当前网站的可用上传空间的数量: 该函数不需要参数,返回一个代表可用空间数量的整数。

确定当前博客的配额中是否有剩余的上传空间。

function get_upload_space_available() {
	$allowed = get_space_allowed();
	if ( $allowed < 0 ) {
		$allowed = 0;
	}
	$space_allowed = $allowed * MB_IN_BYTES;
	if ( get_site_option( 'upload_space_check_disabled' ) ) {
		return $space_allowed;
	}

	$space_used = get_space_used() * MB_IN_BYTES;

	if ( ( $space_allowed - $space_used ) <= 0 ) {
		return 0;
	}

	return $space_allowed - $space_used;
}

常见问题

FAQs
查看更多 >