请求在 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_conn, command);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
command | Required. Specifies the command to execute |
返回值: | 如果命令执行成功则为 TRUE;否则为假 |
---|---|
PHP 版本: | 4.0.3+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!