dongru3726 2012-06-05 07:16
浏览 56
已采纳

PHP ftp_rawlist - 目录之前的选项

I'm looking for list of options, which can be used in PHP module FTP in methods ftp_nlist and ftp_rawlist before directory. There are some examples i found:

 // include hidden files
 ftp_rawlist($h, '-a /');

 // more complex - only names of files
 ftp_rawlist($h, '-1l /');

Maybe it is FTP server specific, but both work on Windows and Linux. I there any specification with full list.

  • 写回答

1条回答 默认 最新

  • doukucai0099 2012-06-05 21:29
    关注

    Options are specific to LIST command of FTP server.

    ListOptions available on Linux ProFTPd server. http://www.proftpd.org/docs/howto/ListOptions.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?