PHP code example of ivanrussu / multipart-form-data-converter

1. Go to this page and download the library: Download ivanrussu/multipart-form-data-converter library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ivanrussu / multipart-form-data-converter example snippets



use IvanRussu\MultipartFormDataConverter\Formatter\JsonFormatter;
use IvanRussu\MultipartFormDataConverter\Formatter\PostmanBulkEditFormatter;
use IvanRussu\MultipartFormDataConverter\MultipartMessage;


$message = new MultipartMessage($string);
$array = $message->parse();

$formatter = new PostmanBulkEditFormatter();
$postmanBulkEdit = $formatter->format($array);

$formatter = new JsonFormatter();
$json = $formatter->format($array);

composer test ./tests/Tests.php