You are here

public function ServerRequestInterface::getUploadedFiles in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/psr/http-message/src/ServerRequestInterface.php \Psr\Http\Message\ServerRequestInterface::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.

2 methods override ServerRequestInterface::getUploadedFiles()
ServerRequest::getUploadedFiles in vendor/zendframework/zend-diactoros/src/ServerRequest.php
Retrieve normalized file upload data.
ServerRequest::getUploadedFiles in vendor/symfony/psr-http-message-bridge/Tests/Fixtures/ServerRequest.php
Retrieve normalized file upload data.

File

vendor/psr/http-message/src/ServerRequestInterface.php, line 137

Class

ServerRequestInterface
Representation of an incoming, server-side HTTP request.

Namespace

Psr\Http\Message

Code

public function getUploadedFiles();