将当前页面另存为HTML到服务器
有人建议采用哪种方法将当前页面作为HTML文件保存到服务器?在这种情况下,还要注意安全性 问题。
我花了无尽的时间寻找这个问题,却没有发现任何东西。
非常感谢您的帮助,谢谢!
谢谢大家的帮助,我们非常感谢。
回答:
如果您打算将页面的输出保存在文件中,则可以使用缓冲来做到这一点。您需要使用的功能是ob_start和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
。
以上是 将当前页面另存为HTML到服务器 的全部内容, 来源链接: utcz.com/qa/419423.html