Skip to content

Instantly share code, notes, and snippets.

@mstaack
Created May 25, 2016 17:45
Show Gist options
  • Save mstaack/bcd352f06f3a6f2e6f796da967141c91 to your computer and use it in GitHub Desktop.
Save mstaack/bcd352f06f3a6f2e6f796da967141c91 to your computer and use it in GitHub Desktop.
quick & dirty stream upload
$in = fopen("php://input", "r");
$out = fopen("file.txt", "w+");
stream_copy_to_stream($in, $out);
fclose($in);
fclose($out);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment