例
获取有关文件信息的文件列表:
<?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参考