Latest web development tutorials

PHP ftp_exec () function

PHP FTP Reference Complete PHP FTP Reference

Definition and Usage

ftp_exec () function to request to execute a program or command on the FTP server.

If successful, the function returns TRUE. If it fails, it returns FALSE.

grammar

ftp_exec(ftp_connection,command)

参数 描述
ftp_connection 必需。规定要使用的 FTP 连接。
command 必需。规定发送到 FTP 服务器的命令请求。


Tips and Notes

NOTE: With ftp_raw () function is different, ftp_exec () only after you log in to the FTP server to send commands.


Examples

<?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);
?>


PHP FTP Reference Complete PHP FTP Reference