“Jak czytać z plików temp PHP” Kod odpowiedzi

PHP Otrzymuj 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

Jak czytać z plików temp 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

Odpowiedzi podobne do “Jak czytać z plików temp PHP”

Pytania podobne do “Jak czytać z plików temp PHP”

Więcej pokrewnych odpowiedzi na “Jak czytać z plików temp PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu