您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1426 复制当前网址

ftp_pwd



PHP ftp_pwd() 函数

定义和用法

ftp_pwd() 函数返回当前目录名。


语法

ftp_pwd(ftp_connection)


参数描述
ftp_connection必需。规定要使用的 FTP 连接(FTP 连接的标识符)。


例子

<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");// 输出当前目录echo ftp_pwd($conn) . "<br />";// 把目录改为 imagesftp_chdir($conn,"images");// 输出当前目录echo ftp_pwd($conn);

ftp_close($conn);
?>


文章来源:https://liqingbo.com/blog-676.html

上一篇:ftp_quit

下一篇:ftp_put

评论