Returns the name of the file, without its extension.
Returns the name of the file, without its extension.
Returns
string
protected
get_type( void )
: string|null
Returns the type of the file.
Returns the type of the file.
If the ICanBoogie\HTTP\File::$type property was not defined during construct, the type
is guessed from the name or the pathname of the file.
Returns
string|null The MIME type of the file, or null if it cannot be determined.
protected
get_size( void )
: integer|false
Returns the size of the file.
Returns the size of the file.
If the ICanBoogie\HTTP\File::$size property was not defined during construct, the size
is guessed using the pathname of the file. If the pathname is not available the method
returns null.
Returns
integer|false The size of the file or false if it cannot be determined.
protected
get_is_valid( void )
: boolean
Whether the file is valid.
Whether the file is valid.
A file is considered valid if it has no error code, if it has a size,
if it has either a temporary name or a pathname and that the file actually exists.
Returns
boolean true if the file is valid, false otherwise.
Note: The extension includes the dot e.g. ".zip". The extension is always in lower case.
Returns
string|null
protected
get_is_uploaded( void )
: boolean
Checks if a file is uploaded.
Checks if a file is uploaded.
Returns
boolean true if the file is uploaded, false otherwise.
public
match( string|array$type )
: boolean
Checks if the file matches a MIME class, a MIME type, or a file extension.
Checks if the file matches a MIME class, a MIME type, or a file extension.
Parameters
$type
The type can be a MIME class (e.g. "image"),
a MIME type (e.g. "image/png"), or an extensions (e.g. ".zip"). An array can be used to
check if a file matches multiple type e.g. [ "image", ".mp3" ], which matches any type
of image or files with the ".mp3" extension.
Returns
boolean true if the file matches (or $type is empty), false otherwise.
public
move( string$destination, boolean$overwrite = self::MOVE_NO_OVERWRITE )