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 copy() function: usage variations - stat after copy --FILE-- <?php /* Test c..

Decoded Output download

--TEST--
Test copy() function: usage variations - stat after copy
--FILE--
<?php
/* Test copy(): checking stat of file before and after after copy operation */

$file_path = __DIR__;

require($file_path."/file.inc");

echo "*** Test copy() function: stat of file before and after copy ***
";
$src_file_name = $file_path."/copy_variation18.tmp";
$file_handle =  fopen($src_file_name, "w");
fwrite($file_handle, str_repeat("Hello2world...
", 100));
fclose($file_handle);

$dest_file_name = $file_path."/copy_copy_variation18.tmp";

clearstatcache();

$stat_before_copy = stat($src_file_name);
clearstatcache();

echo "Copy operation => ";
var_dump( copy($src_file_name, $dest_file_name) );

$stat_after_copy = stat($src_file_name);
clearstatcache();

// compare all stat fields except access time
$stat_keys_to_compare = array("dev", "ino", "mode", "nlink", "uid", "gid",
                       "rdev", "size", "mtime", "ctime",
                       "blksize", "blocks");

echo "Comparing the stats of file before and after copy operation => ";
var_dump( compare_stats($stat_before_copy, $stat_after_copy, $stat_keys_to_compare) );

echo "*** Done ***
";
?>
--CLEAN--
<?php
unlink(__DIR__."/copy_copy_variation18.tmp");
unlink(__DIR__."/copy_variation18.tmp");
?>
--EXPECT--
*** Test copy() function: stat of file before and after copy ***
Copy operation => bool(true)
Comparing the stats of file before and after copy operation => bool(true)
*** Done ***

Did this file decode correctly?

Original Code

--TEST--
Test copy() function: usage variations - stat after copy
--FILE--
<?php
/* Test copy(): checking stat of file before and after after copy operation */

$file_path = __DIR__;

require($file_path."/file.inc");

echo "*** Test copy() function: stat of file before and after copy ***\n";
$src_file_name = $file_path."/copy_variation18.tmp";
$file_handle =  fopen($src_file_name, "w");
fwrite($file_handle, str_repeat("Hello2world...\n", 100));
fclose($file_handle);

$dest_file_name = $file_path."/copy_copy_variation18.tmp";

clearstatcache();

$stat_before_copy = stat($src_file_name);
clearstatcache();

echo "Copy operation => ";
var_dump( copy($src_file_name, $dest_file_name) );

$stat_after_copy = stat($src_file_name);
clearstatcache();

// compare all stat fields except access time
$stat_keys_to_compare = array("dev", "ino", "mode", "nlink", "uid", "gid",
                       "rdev", "size", "mtime", "ctime",
                       "blksize", "blocks");

echo "Comparing the stats of file before and after copy operation => ";
var_dump( compare_stats($stat_before_copy, $stat_after_copy, $stat_keys_to_compare) );

echo "*** Done ***\n";
?>
--CLEAN--
<?php
unlink(__DIR__."/copy_copy_variation18.tmp");
unlink(__DIR__."/copy_variation18.tmp");
?>
--EXPECT--
*** Test copy() function: stat of file before and after copy ***
Copy operation => bool(true)
Comparing the stats of file before and after copy operation => bool(true)
*** Done ***

Function Calls

None

Variables

None

Stats

MD5 1472569eb2dc7b772367dbca2899ee39
Eval Count 0
Decode Time 84 ms