Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Test tempnam() function: usage variations - Using previous unique filename --SKIP..
Decoded Output download
--TEST--
Test tempnam() function: usage variations - Using previous unique filename
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
die("skip Do not run on Windows");
?>
--FILE--
<?php
/* Trying to create unique files by passing previously created unique file name as prefix */
$file_path = __DIR__;
echo "
*** Test tempnam(): by passing previously created filenames ***
";
$file_name = "tempnam_variation6.tmp";
for($i=1; $i<=3; $i++) {
echo "-- Iteration $i --
";
$file_name = tempnam("$file_path", $file_name);
if( file_exists($file_name) ) {
echo "File name is => ";
print($file_name);
echo "
";
echo "File created in => ";
$file_dir = dirname($file_name);
if ($file_dir == sys_get_temp_dir()) {
echo "temp dir
";
}
else if ($file_dir == $file_path) {
echo "directory specified
";
}
else {
echo "unknown location
";
}
}
unlink($file_name);
}
echo "
*** Done ***
";
?>
--EXPECTF--
*** Test tempnam(): by passing previously created filenames ***
-- Iteration 1 --
File name is => %s%etempnam_variation6.tmp%s
File created in => directory specified
-- Iteration 2 --
File name is => %s%etempnam_variation6.tmp%s
File created in => directory specified
-- Iteration 3 --
File name is => %s%etempnam_variation6.tmp%s
File created in => directory specified
*** Done ***
Did this file decode correctly?
Original Code
--TEST--
Test tempnam() function: usage variations - Using previous unique filename
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
die("skip Do not run on Windows");
?>
--FILE--
<?php
/* Trying to create unique files by passing previously created unique file name as prefix */
$file_path = __DIR__;
echo "\n*** Test tempnam(): by passing previously created filenames ***\n";
$file_name = "tempnam_variation6.tmp";
for($i=1; $i<=3; $i++) {
echo "-- Iteration $i --\n";
$file_name = tempnam("$file_path", $file_name);
if( file_exists($file_name) ) {
echo "File name is => ";
print($file_name);
echo "\n";
echo "File created in => ";
$file_dir = dirname($file_name);
if ($file_dir == sys_get_temp_dir()) {
echo "temp dir\n";
}
else if ($file_dir == $file_path) {
echo "directory specified\n";
}
else {
echo "unknown location\n";
}
}
unlink($file_name);
}
echo "\n*** Done ***\n";
?>
--EXPECTF--
*** Test tempnam(): by passing previously created filenames ***
-- Iteration 1 --
File name is => %s%etempnam_variation6.tmp%s
File created in => directory specified
-- Iteration 2 --
File name is => %s%etempnam_variation6.tmp%s
File created in => directory specified
-- Iteration 3 --
File name is => %s%etempnam_variation6.tmp%s
File created in => directory specified
*** Done ***
Function Calls
None |
Stats
MD5 | 3551f519de38c91e25752fd1c77c7ea1 |
Eval Count | 0 |
Decode Time | 75 ms |