PHP - 在另一台服务器上的 opendir
我对 PHP 有点陌生。
我有两个不同的主机,我希望其中一个主机中的 php 页面向我显示另一个主机的目录列表。我知道如何在同一主机上使用 opendir() 但是否可以使用它来访问另一台机器?
提前致谢
I'm kinda new to PHP.
I've got two different hosts and I want my php page in one of them to show me a directory listing of the other. I know how to work with opendir() on the same host but is it possible to use it to get access to another machine?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试:
Try:
您可以使用 PHP 的 FTP 功能 远程连接到服务器并获取目录列表:
You could use PHP's FTP Capabilities to remotely connect to the server and get a directory listing:
我无法让 FTP 建议发挥作用,所以我采取了一种更非常规的路线,基本上是从“索引”页面中提取 html 并提取文件名。
索引页:
/files 的索引
提取码:
I was unable to get the FTP suggestions to work so I took a more unconventional route, basically it yanks the html from the "Index of" page and extracts the filenames.
Index page:
Index of /files
Extraction code: