Skip to content

Instantly share code, notes, and snippets.

@airflash
Created February 26, 2018 21:18
Show Gist options
  • Save airflash/402e0389f57d34fad7dbdb2088e819d2 to your computer and use it in GitHub Desktop.
Save airflash/402e0389f57d34fad7dbdb2088e819d2 to your computer and use it in GitHub Desktop.
PHP save image to file
<?php
if (isset($GLOBALS["HTTP_RAW_POST_DATA"])){
$jpg = $GLOBALS["HTTP_RAW_POST_DATA"];
$filename = date("Y-m-d-H-i-s");
$file = fopen("uploads/".$filename.".jpg", "w");
fwrite($file, $jpg);
fclose($file);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment