“PHP GET TEMPFILE” Code-Antworten

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

So lesen Sie aus Temp -Dateien 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

Ähnliche Antworten wie “PHP GET TEMPFILE”

Fragen ähnlich wie “PHP GET TEMPFILE”

Weitere verwandte Antworten zu “PHP GET TEMPFILE” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen