将网页保存到服务器文件夹

发布于 2024-12-21 08:14:33 字数 248 浏览 1 评论 0原文

有没有办法将外部网页保存到服务器上的文件夹中,但包含所有网页元素(JS 文件、图像、css...等)。就像您可以在浏览器中使用选项 save-complete-page 执行的操作一样,但我需要将其与 php 一起保存在我的服务器文件夹上。当包含此文件夹时,会将页面显示为原始页面。也许用curl或一些php函数...???

怎么做。请帮忙!

PS我这样做是有充分理由的,不是为了窃取内容!

当我完成操作和功能时,我将清空该文件夹。

Is there any way to save a external web page to folder on server but with all webpage elements (JS files,images,css... etc.). Like you can do at browser with option save-complete-page but I need this to save with php on my server folder. And when include this folder to show the page as original. Maybe with curl or some php function ... ???

HOW TO DO THAT. please HELP!

p.s.I doing this for good reason not for stealing content!

and when I finising with operation and function I will empty the folder.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十年九夏 2024-12-28 08:14:33

您是说您想作为客户端访问 php 站点(无论是在浏览器中还是通过 wget/curl/etc),然后保存所有相关的服务器端文件?

如果无法访问服务器,这是不可能的。服务器端内容(例如 PHP 页面,可能还有网站的其他部分)是解释的在您作为客户端查看站点的任何部分之前由服务器进行。您需要在服务器端访问这些文件,以便在解释代码之前查看其中的内容。

Are you saying that you want to visit a php site as a client (whether in a browser or via wget/curl/etc) and then save all related server-side files?

Without access to the server, that is not possible. The server-side content (e.g. the PHP pages and possibly some other parts of the site) are interpretted by the server before you as a client see any part of the site. You need server-side access to the files in order to see what is there before the code is interpretted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文