“PHP Get Tempfile” Código de respuesta

PHP Get Tempfile


To get the underlying file path of a tmpfile file pointer:

<?php
$file = tmpfile();
$path = stream_get_meta_data($file)['uri']; // eg: /tmp/phpFx0513a

Testy Tern

cómo leer de los archivos temperh PHP

<?php$dir = sys_get_temp_dir();$tmp = tempnam($dir, "foo");file_put_contents($tmp, "hello");$f = fopen($tmp, "a");fwrite($f, " world");fclose($f);echo file_get_contents($tmp);
Ugly Unicorn

Respuestas similares a “PHP Get Tempfile”

Preguntas similares a “PHP Get Tempfile”

Más respuestas relacionadas con “PHP Get Tempfile” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código