wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_dirsize › WordPress Function

Seit
Veraltetn/v
get_dirsize ( $directory, $max_execution_time = null )
Parameter: (2)
  • (string) $directory Full path of a directory.
    Erforderlich: Ja
  • (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.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (int|false|null) Size in bytes if a valid directory. False if not. Null if timeout.
Definiert in:
Codex:
Changelog:
  • 5.2.0

Gets the size of a directory.

A helper function that is used primarily to check whether a blog has exceeded its allowed upload space.


Quellcode

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;
}