ftp_pwd 返回当前目录名

发表日期:2021-07-01 08:56:47 | 来源: | | 浏览(755) 分类:FTP 函数

ftp_pwd

(PHP 4, PHP 5, PHP 7, PHP 8)

ftp_pwd返回当前目录名

说明

ftp_pwd(resource $ftp_stream): string

参数

ftp_stream

FTP 连接资源。

返回值

返回当前目录名称,发生错误则返回 false

范例

示例 #1 ftp_pwd() 例子

<?php 
// set up basic connection$conn_id = ftp_connect($ftp_server);
// login with username and password$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// change directory to public_htmlftp_chdir($conn_id, 'public_html');
// print current directoryecho ftp_pwd($conn_id);
 // /public_html// close the connectionftp_close($conn_id);
?>

参见

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。