You are here

public function ServerRequest::getUploadedFiles in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/zendframework/zend-diactoros/src/ServerRequest.php \Zend\Diactoros\ServerRequest::getUploadedFiles()
  2. 8.0 vendor/symfony/psr-http-message-bridge/Tests/Fixtures/ServerRequest.php \Symfony\Bridge\PsrHttpMessage\Tests\Fixtures\ServerRequest::getUploadedFiles()
Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-diactoros/src/ServerRequest.php \Zend\Diactoros\ServerRequest::getUploadedFiles()

Retrieve normalized file upload data.

This method returns upload metadata in a normalized tree, with each leaf an instance of Psr\Http\Message\UploadedFileInterface.

These values MAY be prepared from $_FILES or the message body during instantiation, or MAY be injected via withUploadedFiles().

Return value

array An array tree of UploadedFileInterface instances; an empty array MUST be returned if no data is present.

Overrides ServerRequestInterface::getUploadedFiles

File

vendor/zendframework/zend-diactoros/src/ServerRequest.php, line 101

Class

ServerRequest
Server-side HTTP request

Namespace

Zend\Diactoros

Code

public function getUploadedFiles() {
  return $this->uploadedFiles;
}