文本文件的简单PHP编辑器

2022-08-30 19:48:35

我为客户开发了一个网站,他希望能够在后端类型的解决方案中编辑主页的一小部分。因此,作为解决方案,我想添加一个非常基本的编辑器(domain.com/backend/editor.php),当您访问它时,它将具有一个带有代码的文本字段和一个保存按钮。它将编辑的代码将设置为 TXT 文件。

我认为这样的事情很容易用PHP编码,但谷歌这次没有帮助我,所以我希望这里可能有人会给我指出正确的方向。请注意,我没有PHP编程的经验,只有HTML和基本的javascript,所以请在您提供的任何回复中彻底。


答案 1

创建 HTML 表单以编辑文本文件的内容。如果它被提交,您可以更新文本文件(并再次重定向到表单以防止F5 /刷新警告):

<?php

// configuration
$url = 'http://example.com/backend/editor.php';
$file = '/path/to/txt/file';

// check if form has been submitted
if (isset($_POST['text']))
{
    // save the text contents
    file_put_contents($file, $_POST['text']);

    // redirect to form again
    header(sprintf('Location: %s', $url));
    printf('<a href="%s">Moved</a>.', htmlspecialchars($url));
    exit();
}

// read the textfile
$text = file_get_contents($file);

?>
<!-- HTML form -->
<form action="" method="post">
<textarea name="text"><?php echo htmlspecialchars($text); ?></textarea>
<input type="submit" />
<input type="reset" />
</form>

答案 2

要读取文件:

<?php
    $file = "pages/file.txt";
    if(isset($_POST))
    {
        $postedHTML = $_POST['html']; // You want to make this more secure!
        file_put_contents($file, $postedHTML);
    }
?>
<form action="" method="post">
    <?php
    $content = file_get_contents($file);
    echo "<textarea name='html'>" . htmlspecialchars($content) . "</textarea>";
    ?>
    <input type="submit" value="Edit page" />
</form>

推荐