$files
$files : array|null
An array of UploadedFile instances for any files uploaded as part of this request.
Populated the first time either files(), file(), or hasFile() is called.
Class FileCollection
Provides easy access to uploaded files for a request.
getFile(string $name) : \CodeIgniter\HTTP\Files\UploadedFile|null
Attempts to get a single file from the collection of uploaded files.
string | $name |
createFileObject(array $array) : array|\CodeIgniter\HTTP\Files\UploadedFile
Given a file array, will create UploadedFile instances. Will loop over an array and create objects for each.
array | $array |
Loading…