Latest web development tutorials

PHP ftp_pwd () function

PHP FTP Reference Complete PHP FTP Reference

Definition and Usage

ftp_pwd () function returns the current directory name of the FTP connection.

grammar

ftp_pwd(ftp_connection)

参数 描述
ftp_connection 必需。规定要使用的 FTP 连接。


Examples

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

// print current directory
echo ftp_pwd($conn) . "<br />";

// change directory to images
ftp_chdir($conn,"images");

// print current directory
echo ftp_pwd($conn);

ftp_close($conn);
?>

The code above will output:

/
/images


PHP FTP Reference Complete PHP FTP Reference