目录

PHP ftp_site() 函数

❮ PHP FTP 参考

示例

发送 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+

❮ PHP FTP 参考