PHP ftp_exec() 函数

定义和用法

ftp_exec() 函数请求在 FTP 服务器上执行一个程序或命令。

若成功(服务器发送响应代码 200),则返回 true,否则返回 false。

语法

  1. ftp_exec(ftp_connection,command)
参数 描述
ftp_connection 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。
command 必需。规定发送到服务器的命名请求。

说明

该函数发送一个 SITE EXEC command 请求到 FTP 服务器。

提示和注释

ftp_raw() 函数 不同,ftp_exec() 只有在登录到 FTP 服务器后才能发送命令。

例子

  1. <?php
  2. $command = "ls-al > test.txt";
  3. $conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
  4. ftp_login($conn,"admin","ert456");
  5.  
  6. if (ftp_exec($conn,$command))
  7. {
  8. echo "Command executed successfully";
  9. }
  10. else
  11. {
  12. echo "Execution of command failed";
  13. }
  14.  
  15. ftp_close($conn);
  16. ?>