例
獲取有關文件信息的文件列表:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or
die("Could not connect to $ftp_server");
$login
= ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
// get the file
list for /
$filelist = ftp_rawlist($ftp_conn, "/");
// close connection
ftp_close($ftp_conn);
// output $filelist
var_dump($filelist);
?>
輸出可能是這個樣子:
array(3)
{
[0] =>
string(57) "drw-rw-rw- 1 user group 0 Jan 03 08:33 images"
[1] => string(62) "-rw-rw-rw- 1 user group 160 Feb 16 13:54 php"
[2] => string(75) "-rw-rw-rw- 1 user group 20 Feb 14 12:22 test"
}
定義和用法
該ftp_rawlist()函數返回文件信息的文件列表(from a specified directory on the FTP server) 。
句法
ftp_rawlist( ftp_connection,dir,recursive );
參數 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP連接使用 |
dir | 需要。 指定的目錄路徑。 可以包括針對LIST命令參數。 提示:使用"." 指定當前目錄 |
recursive | 可選的。 默認情況下,該功能發送"LIST"命令到服務器。 然而,如果遞歸參數被設置為TRUE,則發送"LIST -R"命令 |
技術細節
返回值: | 返回,其中每個元素對應於一個文本行的陣列。 不執行解析 |
---|---|
PHP版本: | 4+ |
PHP更新日誌: | 在PHP 4.3中添加的遞歸參數 |
<PHP FTP參考