|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-06-24 14:17 UTC] jlim at natsoft dot com dot my
The PHP manual states:
The behaviour of the tempnam() function is system dependent. On Windows the TMP environment variable will override the dir parameter.
However testing the following when my TMP env variable is set to \WINDOWS\TMP:
print tempnam('/','z')
the result is:
C:\zB312.TMP
This used to work fine in PHP 4.0.4pl1.
Thanks again, John
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 20:00:01 2025 UTC |
This is documentation problem. The given path takes precedence over TMPDIR environment variable (not TMP environment variable as it is in docs) From php4/main/php_open_temporary_file.c: /* {{{ php_open_temporary_file * * Unlike tempnam(), the supplied dir argument takes precedence * over the TMPDIR environment variable * This function should do its best to return a file pointer to a newly created * unique file, on every platform. */ This makes the function behave the same way on every system.