File
class File extends UploadedFile (View source)
Traits
Properties
protected string|null | $hashName | The cache copy of the file's hash name. |
from FileHelpers |
static protected array | $macros | The registered string macros. |
from Macroable |
string | $name | The name of the file. |
|
resource | $tempFile | The temporary file resource. |
|
int | $sizeToReport | The "size" to report. |
|
string|null | $mimeTypeToReport | The MIME type to report. |
Methods
Mix another object into the class.
Dynamically handle calls to the class.
Dynamically handle calls to the class.
Store the uploaded file on a filesystem disk.
Store the uploaded file on a filesystem disk with public visibility.
Store the uploaded file on a filesystem disk with public visibility.
Store the uploaded file on a filesystem disk.
Create a new file instance from a base instance.
Create a new file instance.
Create a new fake file with content.
Set the "size" of the file in kilobytes.
Get the size of the file.
Set the "MIME type" for the file.
Get the MIME type of the file.
Get the path to the temporary file.
Details
string|false
store(string $path = '', array|string $options = [])
Store the uploaded file on a filesystem disk.
string|false
storePublicly(string $path = '', array|string $options = [])
Store the uploaded file on a filesystem disk with public visibility.
string|false
storePubliclyAs(string $path, array|string|null $name = null, array|string $options = [])
Store the uploaded file on a filesystem disk with public visibility.
string|false
storeAs(string $path, string|array $name = null, array|string $options = [])
Store the uploaded file on a filesystem disk.
static UploadedFile
createFromBase(UploadedFile $file, bool $test = false)
Create a new file instance from a base instance.