is_upload_space_available()

is_upload_space_available() 确定当前博客配额中是否还有任何上载空间。Determi…

is_upload_space_available()

确定当前博客配额中是否还有任何上载空间。
Determines if there is any upload space left in the current blog’s quota.

目录锚点:#返回#源码


返回(Return)

(bool)如果空间可用,则为True,否则为false。


源码(Source)

/**
 * Determines if there is any upload space left in the current blog's quota.
 *
 * @since 3.0.0
 * @return bool True if space is available, false otherwise.
 */
function is_upload_space_available() {
	if ( get_site_option( 'upload_space_check_disabled' ) )
		return true;

	return (bool) get_upload_space_available();
}
更新版本 源码位置 使用 被使用
3.0.0 wp-includes/ms-functions.php:2553 4 2
类别:WordPress 函数手册

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

评论 (0)COMMENT

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