php-src/ext/standard/tests/file/rename_variation7.phpt

32 lines
669 B
Plaintext
Raw Normal View History

2007-07-23 09:14:28 +00:00
--TEST--
Test rename() function: usage variations-8
--SKIPIF--
<?php
2009-07-08 10:44:29 +00:00
if (substr(PHP_OS, 0, 3) == 'WIN') die('skip.. not for Windows');
2007-07-23 09:14:28 +00:00
if (!function_exists("symlink")) die("skip symlinks are not supported");
?>
--FILE--
<?php
$tmp_link = __FILE__.".tmp.link";
$tmp_link2 = __FILE__.".tmp.link2";
symlink(dirname(__FILE__)."/there_is_no_such_file", $tmp_link);
rename($tmp_link, $tmp_link2);
clearstatcache();
var_dump(readlink($tmp_link));
var_dump(readlink($tmp_link2));
@unlink($tmp_link);
@unlink($tmp_link2);
echo "Done\n";
?>
2008-05-27 09:34:55 +00:00
--EXPECTF--
2007-07-23 09:14:28 +00:00
Warning: readlink(): No such file or directory in %s on line %d
bool(false)
unicode(%d) "%sthere_is_no_such_file"
Done