0
for ($i=0; $i<=$lines; $i++) 
{
    //get each line and exlplode it..
    $part = explode('|', $file[$i]);

    //now start printing ..
    echo'<tr>

            <td width="20%">'.$part[0].'</td>

            <td width="20%">'.$part[1].'</td>

            <td width="20%">'.$part[2].'</td>

            <td width="20%">'.$part[3].'</td>

            <td width="20%">'.$part[4].'</td>

        </tr>';
}

这是我的代码,它从文本文件中读取并在表格中展开,但我这里有一个小问题,因为这个需要链接。

<td width="20%">'.$part[2].'</td>

.$part[2].只是文件中的一个词,但它有查询www.somesite.com/?q=,最后我需要有那个

文件中的单词

那种代码对我不起作用 <td width="20%"> <a herf='www.somesite.com/?q=''.$part[2].'> '.$part[2].' </a> </td>

我真的需要一些帮助...

<?php

//first, get the file...

$file = file('req.txt');



//now count the lines ..

$lines = count($file);



//start the table here..

echo'<table border="2" width="100%">';

echo'<tr>

              <td width="20%">Naslov</td>

              <td width="20%">Vrsta</td>

              <td width="20%">IP</td>

              <td width="20%">Dodano (DD.MM.YY - HH.MM)</td>

              <td width="20%">Status</td>
         </tr>';


//start the loop to get all lines in the table..

for ($i=0; $i<=$lines; $i++) {



//get each line and exlplode it..

  $part = explode('|', $file[$i]);

//now start printing ..

  echo'<tr>

              <td width="20%">'.$part[0].'</td>

              <td width="20%">'.$part[1].'</td>

              <td width="20%">'.$part[2].'</td>

              <td width="20%">'.$part[3].'</td>

              <td width="20%">'.$part[4].'</td>
         </tr>';

}



//close the table so HTML wont suffer :P

echo'</table>'; 




?>

这应该会产生这个,但 ip 列需要链接... 完成品

4

2 回答 2

0

我想vprintf()是你的朋友。

<?php

$fmt = '<tr>
    <td>%1$s</td>
    <td>%2$s</td>
    <td><a href="http://example.com/?q=%3$s">%3$s</a></td>
    <td>%4$s</td>
    <td>%5%s</td>
  </tr>';

for ($i=0; $i<=$lines; $i++) 
{
  // get each line and explode it..
  $part = explode('|', $file[$i]);

  // now start printing ..
  vprintf($fmt, $part);
}

并将其width="20%"放入您的 CSS 中。

于 2013-10-11T20:17:17.463 回答
0

我通过更改输入脚本“文件编写器”中的一些值来单独解决它

$savestring = $title . "|" . $genre . "|<a href=http://www.example.com/ip?ip=" . $ip . ">" . $ip . "|" . $date . "|Za Nalo&#382;it \n";

无论如何,它现在可以工作了:)

于 2013-10-12T14:57:12.290 回答