Skip to content

Instantly share code, notes, and snippets.

View airflash's full-sized avatar

Andrii Shcherban airflash

View GitHub Profile
@airflash
airflash / save_image.php
Created February 26, 2018 21:18
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);
}
?>