发送 FTP SITE 命令:
<?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);
// try to send SITE command
if (ftp_site($ftp_conn, "chmod 777 serverfile.txt"))
{
echo "Command executed successfully";
}
else
{
echo "Command failed";
}
// close connection
ftp_close($ftp_conn);
?>
ftp_site() 函数向 FTP 服务器发送 SITE 命令。
笔记:SITE 命令因服务器而异。它们对于处理操作系统特定的功能(例如文件权限和组成员身份)非常有用。
提示:要查看可用的 SITE 命令,请使用以下命令发送 REMOTEHELP 命令:ftp_raw()功能。
ftp_site(
ftp_conn, command);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
command | Required. Specifies the SITE command (this parameter is not escaped) |
返回值: | TRUE 成功,FALSE 失败 |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!