如何使用php读取文本文件并生成html文件?

时间:2012-11-05 07:22:43

标签: php html

我正在使用文本文件,我将每天更新文本文件。所以我希望这些文本在格式的html文件上。如何使用文本文件生成html文件?任何人都可以帮助我吗?

3 个答案:

答案 0 :(得分:1)

取决于您是否要为txt文件中的段落或每行设置样式

如果每行,那么你可以:

$myfile = 'filetoread.txt';
$lines = file($myfile);    
for($i=count($lines);$i>0;$i--){
    echo "<span class='yourstyleclass'> $lines[$i] </span>";
}

if paragraphs

$myfile = 'filetoread.txt';
$lines = file($myfile);

$lines = str_replace(array("\n\n", "\n\r"), "</p><p>", $lines);
echo "<p>$lines</p>";

答案 1 :(得分:0)

使用file_get_contents($file_location)

请访问:http://php.net/manual/en/function.file-get-contents.php

答案 2 :(得分:0)

假设你在“text_file.txt”中有这个:

<div>
<h1>Header</h1>
<p>Some short paragraph...</p>
</div>

您需要做的就是:

echo file_get_contents("text_file.txt");