Save current page as HTML to server(将当前页面另存为 HTML 到服务器)
问题描述
有人建议用什么方法将当前页面作为 HTML 文件保存到服务器?在这种情况下,还要注意安全性不是问题.
What approach could someone suggest to save the current page as an HTML file to the server? In this case, also note that security is not an issue.
我花了无数时间到处寻找这个,但没有找到任何东西.
I have spent endless hours searching around for this, and have not found a single thing.
非常感谢您的帮助,谢谢!
Your help is much appreciated, thank you!
编辑
感谢大家的帮助,非常感谢.
Thank you all for your help, it was very much appreciated.
推荐答案
如果您的意思是将页面的输出保存在文件中,您可以使用缓冲来实现.您需要使用的函数是 ob_start 和 ob_get_contents.
If you meant saving the output of a page in a file, you can use buffering to do that. The function you need to use are ob_start and ob_get_contents.
<?php
// Start the buffering //
ob_start();
?>
Your page content bla bla bla bla ...
<?php
echo '1';
// Get the content that is in the buffer and put it in your file //
file_put_contents('yourpage.html', ob_get_contents());
?>
这会将页面内容保存在文件yourpage.html
中.
This will save the content of the page in the file yourpage.html
.
这篇关于将当前页面另存为 HTML 到服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将当前页面另存为 HTML 到服务器
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01