PHP ftp_pwd() 函數(shù)
PHP ftp_pwd() 函數(shù)

定義和用法
ftp_pwd() 函數(shù)返回指定 FTP 連接的當(dāng)前目錄名稱(chēng)。
語(yǔ)法
ftp_pwd(ftp_connection)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
實(shí)例
<?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);
?>
$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);
?>
上面的代碼將輸出:
/
/images
/images

相關(guān)文章
- PHP 變量
- PHP EOF(heredoc) 使用說(shuō)明
- PHP 數(shù)據(jù)類(lèi)型
- PHP 魔術(shù)常量
- PHP array() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP asort() 函數(shù)
- PHP list() 函數(shù)
- PHP rsort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Filter 函數(shù)