rename_variation2-win32.phpt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --TEST--
  2. Test rename() function: usage variations
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip.. only for Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. require __DIR__.'/file.inc';
  12. $file_path = __DIR__;
  13. mkdir("$file_path/rename_variation2_dir");
  14. /* Renaming a file and directory to numeric name */
  15. echo "\n*** Testing rename() by renaming a file and directory to numeric name ***\n";
  16. $fp = fopen($file_path."/rename_variation2.tmp", "w");
  17. fclose($fp);
  18. // renaming existing file to numeric name
  19. var_dump( rename($file_path."/rename_variation2.tmp", $file_path."/12345") );
  20. // ensure that rename worked fine
  21. var_dump( file_exists($file_path."/rename_variation2.tmp" ) ); // expecting false
  22. var_dump( file_exists($file_path."/12345" ) ); // expecting true
  23. unlink($file_path."/12345");
  24. // renaming a directory to numeric name
  25. var_dump( rename($file_path."/rename_variation2_dir/", $file_path."/12345") );
  26. // ensure that rename worked fine
  27. var_dump( file_exists($file_path."/rename_variation2_dir" ) ); // expecting false
  28. var_dump( file_exists($file_path."/12345" ) ); // expecting true
  29. rmdir($file_path."/12345");
  30. echo "Done\n";
  31. ?>
  32. --CLEAN--
  33. <?php
  34. $file_path = __DIR__;
  35. unlink($file_path."/rename_variation2_link.tmp");
  36. unlink($file_path."/rename_variation2.tmp");
  37. rmdir($file_path."/rename_variation2_dir");
  38. ?>
  39. --EXPECT--
  40. *** Testing rename() by renaming a file and directory to numeric name ***
  41. bool(true)
  42. bool(false)
  43. bool(true)
  44. bool(true)
  45. bool(false)
  46. bool(true)
  47. Done