notihnio / php-multipart-form-data-parser
The missing php functionality to support put, patch, delete, put FORM and MULTIPART requests handling
Installs: 49 828
Dependents: 2
Suggesters: 0
Security: 0
Stars: 11
Watchers: 1
Forks: 1
Open Issues: 1
Requires
- php: >=8.1
- ext-mbstring: *
- illuminate/http: ^10.0
This package is auto-updated.
Last update: 2024-10-30 02:21:32 UTC
README
The missing php functionality to support put, patch, delete, put, FORM and MULTIPART requests handling
this package is part of notihnio/php-request-parser (https://github.com/notihnio/php-request-parser) which provides full support to PUT PATCH DELETE OPTIONS HEAD TRACE requests
Install
composer require notihnio/php-multipart-form-data-parser:^2.0
Usage
use Notihnio\MultipartFormDataParser;
$request = MultipartFormDataParser::parse();
//to access params use
$params = $request->params;
//to access uploaded files
$files = $request->files;
//to access headers use
$headers = $request->headers;
//to access cookies use
$cookies = $request->cookies;
Support for Symfony, Laravel in combination with Swoole, Roadrunner
If you want to use New Era application servers like Roadrunner or Swoole it's highly recommended passing Laravel or Symfony request instance, as parameter, in order to avoid memory leaks
//laravel
use \Illuminate\Http\Request;
//$request found from controller
$parsedRequest = RequestParser::parse($request);
//symfony
use \Symfony\Component\HttpFoundation\Request
//$request found from controller
$parsedRequest = RequestParser::parse($request);
Atlernative Usage
use Notihnio\MultipartFormDataParser;
MultipartFormDataParser::parse();
//to access params
$params = $_PUT or ($_DELETE, $_PATCH etc.. according to the request type)
//to access uploaded files
$files = $_FILES
Authors
- Notis Mastrandrikos
License
This project is licensed under the MIT License