List all folders on my computer (php)

前端 未结 5 2191
一向
一向 2021-01-27 16:59

I want to browse all folders on my computer without using opendir(), in PHP.

5条回答
  •  臣服心动
    2021-01-27 17:46

    I think I managed to extract the real question out of the comments: What you actually want is to provide an upload of multiple files.

    Answer: No this is not possible with PHP, since it is executed by the server, not by the browser. PHP can give you folders on the server, not on the machine of the user. If you want to upload multiple files in a single step, you should use flash, javascript or something similar.

提交回复
热议问题