gpt4 book ai didi

php - 如何将渲染后的 PHP+HTML 代码导入到文本文件中?

转载 作者:行者123 更新时间:2023-11-30 18:30:12 25 4
gpt4 key购买 nike

我有一个文件,它是 PHP 和 HTML 的组合。

如何将此文件的纯 HTML 代码输出到文本文件中?或者将其放入文本框中。

可以找到我用来生成 HTML 表单的表单代码 here

最佳答案

更新:

OP 似乎在询问如何将呈现的 PHP+HTML 代码放入文本文件中?

//get the output from the file
ob_start();
include "yourphpplushtml.php";
$output = ob_get_clean();

//now create a text file and write to it
$fp = fopen('data.txt', 'w+');
fwrite($fp, $output); //put the output
fclose($fp); //close the handler

//Or put it into the textare

echo '<textarea>'.$output.'</textarea>';

上一个答案但也可能对其他人有帮助

HTML 可以通过多种方式与 PHP 结合

  1. 直接从 PHP 输出 HTML

    <?php
    echo "<head><title>my new title</title></head>";
    ?>
  2. 在您的 HTML 中包含 PHP

    <title><?php echo $dynamictitle; ?></title>
  3. 或者甚至用老式的复杂方式将它们分开

    <?php if($resultFound == true) { ?>
    <p> The result was successfully found.</p>
    <?php } ?>

关于php - 如何将渲染后的 PHP+HTML 代码导入到文本文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9866715/

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