ftp_exec() 函數請求在FTP 伺服器上執行一個程式或指令。
如果成功,則函數傳回TRUE。如果失敗,則傳回FALSE。
ftp_exec(ftp_connection,command)
參數 | 描述 |
---|---|
ftp_connection | 必需。規定要使用的FTP 連線。 |
command | 必需。規定傳送到FTP 伺服器的命令請求。 |
註:與ftp_raw() 函數不同,ftp_exec() 只有在登入FTP 伺服器後才能傳送指令。
<?php$command = "ls-al > test.txt";$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");ftp_login($conn,"admin","ert456 ");if (ftp_exec($conn,$command)) { echo "Command executed successfully"; }else { echo "Execution of command failed"; }ftp_close($conn);?>