gpt4 book ai didi

javascript - 将为客户端呈现的源代码保存为 .txt 文件

转载 作者:行者123 更新时间:2023-12-02 17:35:58 25 4
gpt4 key购买 nike

我正在尝试保存为客户端/用户呈现的网页的源代码。不是因为代码存储在服务器上,而是因为它查看脚本在客户端执行后的情况。 (如果那有意义的话)。基本上,客户端在打开源代码查看器时会查看源代码,然后使用 PHP 将代码保存为服务器上的 .txt 文件。我在想一些 javascript/HTML5? (当然还有 PHP)

最佳答案

基本上你想缓存 html 输出。您可以使用 PHP 中的 ob_ 函数来做到这一点:

<?php
ob_start(); //start buffering output

// your html and echo statements

$cachefile = //wherever you want to save it

$fp = fopen($cachefile, 'w');
fwrite($fp, ob_get_contents()); /* save the buffer to cache file */
fclose($fp);

ob_end_flush(); /* Send the buffer to the browser */
?>

关于javascript - 将为客户端呈现的源代码保存为 .txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22619597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com