WP_Filesystem_Base::size()publicWP 2.5.0

Gets the file size (in bytes).

Method of the class: WP_Filesystem_Base{}

No Hooks.

Return

Int|false. Size of the file in bytes on success, false on failure.

Usage

$WP_Filesystem_Base = new WP_Filesystem_Base();
$WP_Filesystem_Base->size( $file );
$file(string) (required)
Path to file.

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_Base::size() code WP 6.5.2

public function size( $file ) {
	return false;
}