使用PHP连接FTP并备份所有文件夹内容
我正在构建一个自定义 Web 应用程序,用于存储我为客户管理的网站的 FTP 和 MySQL 设置。我的目标不仅是存储设置以供参考,而且是创建帮助进行定期备份的功能。
我的 MySQL 备份功能运行良好,因为它连接到远程数据库,创建转储并将其发送到我的浏览器以在本地下载。
但是...连接到远程 FTP 并将特定文件夹的所有内容下载到本地计算机的最佳方法是什么?
任何建议都会很棒!
I'm building a custom web app that stores the FTP and MySQL settings for the websites I manage for clients. My goal is not only to store the settings for reference, but to create functionality to assist in doing regular backups.
I've got the MySQL backup functionality working great, as it connects to the remote databases, creates a dump and sends it to my browser to download locally.
BUT... what is the best way to connect to a remote FTP and download all the contents of a specific folder to my local computer?
Any suggestions would be amazing!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mroerick 发布的 php 手册中的这个示例可能会对您有所帮助。
This example from the php manual posted by mroerick might help you.