rename_variation7.phpt 658 B

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. Test rename() function: usage variations-8
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') die('skip.. not for Windows');
  6. if (!function_exists("symlink")) die("skip symlinks are not supported");
  7. ?>
  8. --FILE--
  9. <?php
  10. $tmp_link = __FILE__.".tmp.link";
  11. $tmp_link2 = __FILE__.".tmp.link2";
  12. symlink(__DIR__."/there_is_no_such_file", $tmp_link);
  13. rename($tmp_link, $tmp_link2);
  14. clearstatcache();
  15. var_dump(readlink($tmp_link));
  16. var_dump(readlink($tmp_link2));
  17. @unlink($tmp_link);
  18. @unlink($tmp_link2);
  19. echo "Done\n";
  20. ?>
  21. --EXPECTF--
  22. Warning: readlink(): No such file or directory in %s on line %d
  23. bool(false)
  24. string(%d) "%sthere_is_no_such_file"
  25. Done