PHP | ftp_chdir()函数
ftp_chdir()函数是PHP中的一个内置函数,用于更改 FTP 服务器上的当前目录。
句法:
ftp_chdir( $ftp_connection, $directory )
参数:该函数接受上面提到的两个参数,如下所述:
- $ftp_connection:必填参数。它指定用于执行 FTP 命令或功能的现有 FTP 连接。
- $directory :它是必需的参数。它指定要更改当前目录的远程服务器中的路径。
返回值:成功时返回True,失败时返回False。
笔记:
- 此函数适用于PHP 4.0.0 及更新版本。
- 以下示例无法在在线 IDE 上运行。因此,请尝试使用正确的 ftp 服务器名称、用户和密码在一些PHP托管服务器或 localhost 中运行。
- 确保您有权更改目录和访问该目录。
例子:
php
logged in successfully!";
// ftp_chdir() changing current directory to "htdocs"
// remember, you must have folder that will use inside
// current directory of ftp server.
// Here htdocs folder exists in ftp server inside
// base or root directory
if (ftp_chdir($ftp_connection, "htdocs")) {
echo "
Current directory successfully changed to htdocs.";
}
else {
echo "
Error while changing current directory.";
}
}
else {
echo "
login failed!";
}
// Closing connection
if(ftp_close($ftp_connection)) {
echo "
Connection closed Successfully!";
}
}
?>
输出:
successfully connected to the ftp server!
logged in successfully!
Current directory successfully changed to htdocs.
Connection closed Successfully!
参考: https://www. PHP.net/manual/en/函数.ftp-chdir。 PHP