\Omega\Filesystem\Util Size

Class Size.

The Size class provides utility methods for calculating file sizes in bytes from different types of inputs, such as strings, files, and resources. It supports both multibyte and single-byte character encodings, ensuring accurate size calculations even for various types of content. This class is useful for applications that need to handle and manipulate file sizes efficiently.

Summary

Methods
Properties
Constants
fromContent
fromFile
fromResource
No public properties found
No public constants found
No protected methods found
No protected properties found
No protected constants found
No private methods found
No private properties found
No private constants found

Methods

fromContent()

fromContent(string  $content) : int

Returns the size in bytes of the given content.

This method calculates the byte size of a string. If the mbstring extension is loaded, it uses mb_strlen with the '8bit' encoding to ensure accurate byte measurement for multibyte characters. Otherwise, it falls back to strlen.

Parameters

string $content

The content whose size is to be calculated.

Returns

int —

The size of the content in bytes.

fromFile()

fromFile(string  $filename) : int

Returns the size in bytes of the given file.

This method retrieves the size of a file specified by its filename. If the file does not exist or an error occurs, it returns false.

Parameters

string $filename

The path to the file whose size is to be calculated.

Throws

\InvalidArgumentException

if the file does not exist.

Returns

int —

The size of the file in bytes.

fromResource()

fromResource(resource  $handle) : string|int

Returns the size in bytes from the given resource.

This method calculates the size of a resource using fstat. If the resource points to a remote file, the size will be returned as 0. It handles both local and remote resources effectively.

Parameters

resource $handle

The resource whose size is to be calculated.

Returns

string|int —

The size of the resource in bytes, or 0 if the size is unavailable.