PHP ftp_rawlist() 函數(shù)

2018-11-21 14:44 更新

PHP ftp_rawlist() 函數(shù)


PHP FTP 參考手冊(cè) 完整的 PHP FTP 參考手冊(cè)

定義和用法

ftp_rawlist() 函數(shù)返回 FTP 服務(wù)器上指定目錄中文件的詳細(xì)列表。

語(yǔ)法

ftp_rawlist(ftp_connection,dir,recursive)

參數(shù) 描述
ftp_connection 必需。規(guī)定要使用的 FTP 連接。
dir 必需。規(guī)定目錄。請(qǐng)使用 "." 來(lái)規(guī)定當(dāng)前目錄。
recursive 可選。默認(rèn)情況下,該函數(shù)向服務(wù)器發(fā)送 "LIST" 命令。然而,如果 recursive 參數(shù)設(shè)置為 TRUE,則發(fā)送 "LIST -R" 命令。


提示和注釋

注釋?zhuān)?/strong>該函數(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);
?>

上面的代碼將輸出:

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
)


PHP FTP 參考手冊(cè) 完整的 PHP FTP 參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)