如何从文本文件中获取每一行并将其放入网站 table?

How do I get every line from a text file and put it in a website table?

我有一个文本文件,其中包含可变数量的行,每行包含 3 个内容,一个 IP、浏览器信息和一个日期。基本上它是一个包含这些东西的访客日志。

我想取一行,获取每个单独的部分并替换 html 文档 table 中的行。截至目前,我只能从文件中获取第一行。

当我试图在遍历每一行的 while 循环中打印一些内容以查看它是否真的多次遍历它时,它没有。只回显一次,走一圈读一行就停

文本文件包含例如:

日期、浏览器信息和 IP。

<?php
// file path
$path = './visitors.txt';
$html = file_get_contents("log.html");

$visitor_log = fopen($path, 'r');
if(flock($visitor_log, LOCK_SH)){
  // Loop genom alla rader i visitors.txt
  while (($line = fgets($visitor_log)) !== false) {
    $html_pieces = explode("<!--==xxx==-->", $html, 3); 
    $string_split = explode("--", $line, 3); 
    $html = str_replace("---date---", $string_split[0], $html); 
    $html = str_replace("---browser---", $string_split[1], $html); 
    $html = str_replace("---ip---", $string_split[2], $html); 
  }
  fclose($visitor_log);
}else{
die("Error! Couldn't read from file.");
}
echo $html;
?>

我不知道为什么循环没有遍历整个文件。有没有办法只回显每一行以查看它是否真的可以读取所有行?

编辑: 我刚试过

echo $html;

在 while 循环中,它打印了第一行三次,所以我相信它遍历了所有三行,但它没有获取新数据。有没有关系:

$html = file_get_contents("log.html");

没有得到更新?

编辑: html table

代码
<table cellspacing="0" cellpadding="10" border="1" width="100%">
  <thead>
    <tr>
      <th align="left">Dare</th>
      <th align="left">Browser</th>
      <th align="left">IP</th>
    </tr>
  </thead>
  <tbody>
    <!--==xxx==-->
    <tr>
      <td align="left">---date---</td>
      <td align="left">---browser---</td>
      <td align="left">---ip---</td>
    </tr>
    <!--==xxx==-->
  </tbody>
</table>

我想你应该能够像这样阅读文本文件。使用 file 打开文本文件将内容放入一个数组,然后很容易循环使用 list 结合 explode 可以很容易地生成变量。我无法真正确定上面的代码实际上是什么,因为似乎没有输出并且无法理解 log.html 的位置,但希望这可能有所帮助。 (未测试)

$textfile = './visitors.txt';
$lines = file( $textfile, FILE_SKIP_EMPTY_LINES | FILE_IGNORE_NEW_LINES );

foreach( $lines as $line ){
    list( $date, $useragent, $ip )=explode( '--', $line );
    echo $date,$useragent,$ip,'<br />';
}

我刚刚解决了!

问题是

$html = file_get_contents("log.html");

echo $html;

这两行都必须在 while 循环中。

问题在于您如何将数据添加到 $html:

$html = str_replace("---date---", $string_split[0], $html); 

这会将 $html 字符串中每个 ---date--- 的实例替换为当前正在处理的行的日期。如果$html是一个单行模板,那就意味着它被转换成第一行的一行数据。那会很好用。

但是对于下一行,替换字符串 ---date--- 等不再出现在 $html 中 - $html 现在包含您的第 1 行数据。所以 str_replace() 找不到任何要替换的东西,实际上不会做任何事情,除了第一行你永远不会看到任何东西。

最好的解决方案是将模板和生成的结果分开:

$html = file_get_contents("log.html");

// Split up your html into header, data row, and the bottom
$html_pieces = explode("<!--==xxx==-->", $html, 3); 

// Show the table header
echo $html_pieces[0];

$path = './visitors.txt';
$visitor_log = fopen($path, 'r');

while (($line = fgets($visitor_log)) !== false) {
    $string_split = explode("--", $line, 3); 

    // Generate a new line of $output from the data row of your $html_pieces
    $output = str_replace("---date---", $string_split[0], $html_pieces[1]); 
    $output = str_replace("---browser---", $string_split[1], $output); 
    $output = str_replace("---ip---", $string_split[2], $output); 

    // And display, line-by-line
    echo $output;
}

// All done, finish off your table
echo $html_pieces[2];