How to Generate Unique Temporary Files in PHP with tempnam()
This guide explains the PHP tempnam() function, its syntax, optional directory and prefix parameters, return values, and provides two practical code examples demonstrating how to create unique temporary files in both system and custom directories.
tempnam() Function Syntax
tempnam(directory,prefix)Parameters
directory : optional, the path where the temporary file will be created; if omitted, the system's temporary folder is used.
prefix : optional, a string prefixed to the generated filename; defaults to "tmp".
Return Value
On success, the function returns a unique temporary filename; on failure it returns false.
Example 1
<?php
$temp_file = tempnam(sys_get_temp_dir(), 'mytemp');
if ($temp_file) {
echo "Successfully created temporary file: " . $temp_file;
} else {
echo "Failed to create temporary file";
}
?>This example obtains the system temporary directory via sys_get_temp_dir(), passes it to tempnam() with the prefix mytemp, and echoes the generated filename or an error message.
Example 2
<?php
$temp_dir = 'path/to/temp/dir/';
$temp_file = tempnam($temp_dir, 'mytemp');
if ($temp_file) {
echo "Successfully created temporary file: " . $temp_file;
} else {
echo "Failed to create temporary file";
}
?>This example demonstrates specifying a custom directory for the temporary file while using the same prefix.
Using tempnam() allows developers to quickly generate unique temporary filenames for data storage, caching, or logging during development; always check the return value to confirm successful file creation.
php Courses
php中文网's platform for the latest courses and technical articles, helping PHP learners advance quickly.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
