get_dirsize
函数
get_dirsize ( $directory, $max_execution_time = null )
- 参数
-
-
(string)
$directory
Full path of a directory.- Required: 是
-
(int)
$max_execution_time
Maximum time to run before giving up. In seconds. The timeout is global and is measured from the moment WordPress started to load.- Required: 否
- Default: null
-
(string)
- 返回值
-
- (int|false|null) Size in bytes if a valid directory. False if not. Null if timeout.
- 定义位置
-
-
wp-includes/functions.php
, line 8201
-
wp-includes/functions.php
- 引入
- –
- 弃用
- –
Gets the size of a directory.
A helper function that is used primarily to check whether
a blog has exceeded its allowed upload space.
function get_dirsize( $directory, $max_execution_time = null ) { // Exclude individual site directories from the total when checking the main site of a network, // as they are subdirectories and should not be counted. if ( is_multisite() && is_main_site() ) { $size = recurse_dirsize( $directory, $directory . '/sites', $max_execution_time ); } else { $size = recurse_dirsize( $directory, null, $max_execution_time ); } return $size; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。