fix_import_form_size()

fix_import_form_size( int $size ) 获取此网站的剩余上载空间。Get the …

fix_import_form_size( int $size )

获取此网站的剩余上载空间。
Get the remaining upload space for this site.

目录锚点:#参数#返回#源码


参数(Parameters)

参数 类型 必填 说明
$size (int) 必需 当前最大字节数

返回(Return)

(int)最大字节数


源码(Source)

/**
 * Get the remaining upload space for this blog.
 *
 * @since MU
 *
 * @param int $size Current max size in bytes
 * @return int Max size in bytes
 */
function fix_import_form_size( $size ) {
	if ( upload_is_user_over_quota( false ) ) {
		return 0;
	}
	$available = get_upload_space_available();
	return min( $size, $available );
}
更新版本 源码位置 使用 被使用
MU (3.0.0) wp-admin/includes/ms.php:271 0 2
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册