例
要求在FTP服務器上執行命令:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or
die("Could not connect to $ftp_server");
$login
= ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
$command = "ls-al
> somefile.txt";
// execute command
if (ftp_exec($ftp_conn,$command))
{
echo "$command executed successfully.";
}
else
{
echo "Execution of $command failed.";
}
// close connection
ftp_close($ftp_conn);
?>
定義和用法
該ftp_exec()在FTP服務器上執行命令的功能要求。
句法
ftp_exec( ftp_connection,command );
參數 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP連接使用 |
command | 需要。 指定要執行的命令 |
技術細節
返回值: | 如果命令執行成功,返回TRUE; 否則FALSE |
---|---|
PHP版本: | 4.0.3+ |
<PHP FTP參考