Obtenez le contenu d'un fichier TMP PHP

$file = $_FILES['file']['tmp_name']; // It is the path to the file
$data = file_get_contents($file);
Lone Wolf