💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# PHP ftp_nlist() 函数 ## 定义和用法 ftp_nlist() 函数返回指定目录的文件列表。 如果成功,则返回给定目录下的文件名组成的数组,否则返回 false。 ### 语法 ``` ftp_nlist(ftp_connection,dir) ``` | 参数 | 描述 | | --- | --- | | ftp_connection | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 | | dir | 必需。规定要检查的目录。使用 "." 来获得当前目录。 | ## 提示和注释 注释:该函数不适用于 IIS (Internet Information Server)。它返回 nothing。 ## 例子 ``` <?php $conn = ftp_connect("ftp.testftp.com") or die("Could not connect"); ftp_login($conn,"admin","ert456"); print_r(ftp_nlist($conn,"images")); ftp_close($conn); ?> ``` 输出类似: ``` array(3) { [0]=> "flower.gif" [1]=> "car.gif" [2]=> "house.gif" } ```