List all folders on my computer (php)

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

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

5条回答
  •  心在旅途
    2021-01-27 17:51

    In one of the comments, seeming says:

    i want the user to select couple of files and upload rather than having multiple upload boxes. why are people downvoting this question?

    Well, it is because your question is unclear and it is impossible to answer without the context of multiple file uploads.

    The answer is: you can't do that with PHP. PHP runs serverside, so it can only give you a list of all the folders on the server; not the folders on the client side.

    So the solution you need will either be

    • a Java-Applet (Facebook uses this for multiple file uploads)
    • or Flash/Flex (Gmail multiple file upload)

提交回复
热议问题