Skip to content

Instantly share code, notes, and snippets.

View c3r38r170's full-sized avatar
😎
Busy writing code!

c3r38r170

😎
Busy writing code!
  • Funes, Rosario, Santa Fe, Argentina
View GitHub Profile
@misiek08
misiek08 / gist:7988b3b9a9911e35d0b3
Created August 10, 2014 11:02
PHP class for parsing HTTP multipart/form-data request body
<?php
class HttpMultipartParser
{
public function parse_multipart($stream, $boundary = null)
{
$return = array('variables' => array(), 'files' => array());
$partInfo = null;