-1

我的本地服务器上有一个文本文件。我想读取此文本文件的内容数据并将其写入 html 的文本框中。

请你帮助我好吗?

4

2 回答 2

2
$data = file_get_contents('yourfile.txt');
echo '<textarea>', htmlspecialchars($data), '</textarea>';

加载数据,然后file_get_contents()你只需要回显它。根据 HTML 上下文的需要, Usinghtmlspecialchars()负责转义任何数据。

于 2013-07-26T01:38:46.203 回答
0
$textAreaContent = "";

$fp = fopen("read_file.txt", "r");

// If file exist and opened 
if($fp)
{
    while (($buffer = fgets($fp, 1024)) !== false)
        $testAreaContent .= $buffer;
}

于 2013-07-26T01:45:09.643 回答