Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 php 浏览和获取 Web 服务器上文件的路径...?可能有任何 jquery 插件来完成这个....?否则我怎么能只使用 php 来做到这一点......??
编辑:我发现一些脚本在网络服务器上独立运行,让您浏览文件结构。但我需要知道它的完成方法,以便我可以在我自己的脚本中实现它...... .
非常感谢您的建议......
要探索服务器的文件系统,您需要目录函数:
chdir - 更改目录 chroot — 更改根目录 dir — 返回 Directory 类的实例 closedir - 关闭目录句柄 getcwd — 获取当前工作目录 opendir - 打开目录句柄 readdir - 从目录句柄中读取条目 rewinddir - 倒带目录句柄 scandir - 列出指定路径内的文件和目录
但是,如果您正在寻找一些要通读的代码,那就是您正在寻找的东西,请查看filebrowser。不再积极开发,如果我没记错的话,它的核心是非常简单的代码。
我建议你看看CKEditor的文件管理器的代码。
这是 PHP 文件系统参考