PHP ftp_nlist() 函數(shù)
PHP ftp_nlist() 函數(shù)

定義和用法
ftp_nlist() 函數(shù)返回 FTP 服務(wù)器上指定目錄的文件列表。
如果成功,則返回指定目錄下的文件名組成的數(shù)組。如果失敗,則返回 FALSE。
語(yǔ)法
ftp_nlist(ftp_connection,dir)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
dir | 必需。規(guī)定要檢查的目錄。請(qǐng)使用 "." 來(lái)獲得當(dāng)前目錄。 |
提示和注釋
注釋?zhuān)?/b>該函數(shù)不適用于 IIS (Internet Information Server)。它返回 nothing。
實(shí)例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
print_r(ftp_nlist($conn,"images"));
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
print_r(ftp_nlist($conn,"images"));
ftp_close($conn);
?>
上面的代碼將輸出:
array(3)
{
[0]=> "flower.gif"
[1]=> "car.gif"
[2]=> "house.gif"
}
{
[0]=> "flower.gif"
[1]=> "car.gif"
[2]=> "house.gif"
}

相關(guān)文章
- PHP 安裝
- PHP 語(yǔ)法
- PHP $_POST 變量
- PHP Session
- PHP 過(guò)濾器
- PHP 高級(jí)過(guò)濾器
- PHP array_count_values() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP arsort() 函數(shù)
- PHP end() 函數(shù)
- PHP natsort() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Array 函數(shù)