PHP/File Directory/tempnam
Версия от 10:37, 26 мая 2010; (обсуждение)
Generating a filename with tempnam()
<?php
$tempfilename = tempnam("/tmp","data-");
print "Temporary data will be stored in $tempfilename";
?>
<?php
$tempfilename = tempnam("/tmp","data-");
print "Temporary data will be stored in $tempfilename";
?>