PHP ftp_rawlist() 函數(shù)
PHP ftp_rawlist() 函數(shù)

定義和用法
ftp_rawlist() 函數(shù)返回 FTP 服務(wù)器上指定目錄中文件的詳細(xì)列表。
語法
ftp_rawlist(ftp_connection,dir,recursive)
參數(shù) | 描述 |
---|---|
ftp_connection | 必需。規(guī)定要使用的 FTP 連接。 |
dir | 必需。規(guī)定目錄。請(qǐng)使用 "." 來規(guī)定當(dāng)前目錄。 |
recursive | 可選。默認(rèn)情況下,該函數(shù)向服務(wù)器發(fā)送 "LIST" 命令。然而,如果 recursive 參數(shù)設(shè)置為 TRUE,則發(fā)送 "LIST -R" 命令。 |
提示和注釋
注釋:該函數(shù)以數(shù)組的形式返回服務(wù)器的響應(yīng)。不執(zhí)行解析。
實(shí)例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
print_r (ftp_rawlist($conn,"."));
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
print_r (ftp_rawlist($conn,"."));
ftp_close($conn);
?>
上面的代碼將輸出:
Array
(
[0] => dr--r--r-- 1 user group 0 Feb 15 13:02 .
[1] => dr--r--r-- 1 user group 0 Feb 15 13:02 ..
[2] => drw-rw-rw- 1 user group 0 Jan 03 08:33 images
[3] => -rw-rw-rw- 1 user group 160 Feb 16 13:54 test.php
[4] => -rw-rw-rw- 1 user group 20 Feb 14 12:22 test.txt
)
(
[0] => dr--r--r-- 1 user group 0 Feb 15 13:02 .
[1] => dr--r--r-- 1 user group 0 Feb 15 13:02 ..
[2] => drw-rw-rw- 1 user group 0 Jan 03 08:33 images
[3] => -rw-rw-rw- 1 user group 160 Feb 16 13:54 test.php
[4] => -rw-rw-rw- 1 user group 20 Feb 14 12:22 test.txt
)

相關(guān)文章
- PHP 安裝
- PHP 語法
- PHP 變量
- PHP If Else 語句
- PHP 多維數(shù)組
- PHP array_intersect_assoc() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_values() 函數(shù)
- PHP extract() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Math 函數(shù)
- PHP 5 MySQLi 函數(shù)