notihnio/php-multipart-form-data-parser

The missing php functionality to support put, patch, delete, put FORM and MULTIPART requests handling

2.1.0 2023-08-31 14:43 UTC

This package is auto-updated.

Last update: 2024-03-30 00:25:41 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

Latest Stable Version Total Downloads License Version PHP Version Require example workflow

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