ftp_rename_basic1.phpt 500 B

1234567891011121314151617181920212223
  1. --TEST--
  2. FTP basic ftp_rename calls
  3. --SKIPIF--
  4. <?php
  5. require 'skipif.inc';
  6. ?>
  7. --FILE--
  8. <?php
  9. require 'server.inc';
  10. $ftp = ftp_connect('127.0.0.1', $port);
  11. if (!$ftp) die("Couldn't connect to the server");
  12. ftp_login($ftp, 'user', 'pass');
  13. var_dump(ftp_rename($ftp, 'existing_file', 'nonexisting_file'));
  14. var_dump(ftp_rename($ftp, 'nonexisting_file', 'nonexisting_file'));
  15. ?>
  16. --EXPECTF--
  17. bool(true)
  18. Warning: ftp_rename(): No such file or directory in %sftp_rename_basic1.php on line 10
  19. bool(false)