gpt4 book ai didi

php - 在 PHP 中分离文件和目录

转载 作者:行者123 更新时间:2023-12-04 23:53:04 27 4
gpt4 key购买 nike

用于列出文件和目录的 PHP 代码。

$buff = ftp_nlist($conn_id,$dir );

$buff 是一个包含文件和目录的数组。

有没有办法得到 2 个单独的数组,1 个只包含文件,其他只包含目录。

最佳答案

来自 the documentation :

directory

The directory to be listed. This parameter can also include arguments, eg. ftp_nlist($conn_id, "-la /your/dir"); Note that this parameter isn't escaped so there may be some issues with filenames containing spaces and other characters.

因此执行 ftp_nlist 两次:一次提供仅提供文件的参数,然后提供仅提供目录的参数。 这将取决于 FTP 服务器站点所在的系统

或者,您可以使用 this more verbose solution使用 ftp_chdirthis one使用 ftp_size

关于php - 在 PHP 中分离文件和目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6557154/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com