目录

PHP ftp_mlsd() 函数

❮ PHP FTP 参考

示例

返回 "images" 目录中的文件列表:

<?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);

$dir = "/images";
$dirlist = ftp_mlsd($ftp_conn, $dir);

// output directory list
echo($dirlist);

// close connection
ftp_close($ftp_conn);
?>

定义和用法

ftp_mlsd() 函数返回指定目录中的文件列表。

语法

ftp_mlsd( ftp_conn, dir);

参数值

Parameter Description
ftp_conn Required. Specifies the FTP connection to use
dir Required. Specifies the name of the directory to be listed. Use "." to get the current directory


技术细节

返回值: 成功时包含指定目录中的文件信息的数组,失败时为 FALSE
PHP 版本: 7.2+

❮ PHP FTP 参考