Answers for "php get tmp file"

PHP
1

get contents of a tmp file php

$file = $_FILES['file']['tmp_name']; // It is the path to the file
$data = file_get_contents($file);
Posted by: Guest on May-29-2021

Browse Popular Code Answers by Language