Latest web development tutorials

PHP ftp_chdir () function

PHP FTP Reference Complete PHP FTP Reference

Definition and Usage

ftp_chdir () function to change the current directory to the specified directory on the FTP server.

If successful, the function returns TRUE. If it fails, FALSE and a warning is returned.

grammar

ftp_chdir(ftp_connection,directory)

参数 描述
ftp_connection 必需。规定要使用的 FTP 连接。
directory 必需。规定要切换到的目录。


Examples

<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");

//Outputs the current directory
echo "Dir: ".ftp_pwd($conn);
echo "<br />";
//Change to the images directory
ftp_chdir($conn,"images");
echo "Dir: ".ftp_pwd($conn);

ftp_close($ftp_server);
?>

The code above will output:

Dir: /
Dir: /images


PHP FTP Reference Complete PHP FTP Reference