0

大家好,我有一个关于 strip_tags 函数的问题。我有一个这样的html文档。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p>er</p>
</body>
</html>

和这个 php 脚本

<?php
$file = "ht.html";
$fp = fopen($file, "r");
$data = fread($fp, filesize($file));
fclose($fp);
$output = str_replace("\t|\t", "|", $data);
$outputline = explode("\n", $output);
$lexeisline=count($outputline);

for ($i = 0; $i < $lexeisline; $i++){
    $outputline[$i]=strip_tags($outputline[$i]);
      if (empty($outputline[$i])){
          unset($outputline[$i]);
}
}
$outputline = array_values($outputline);
$lexeisline=count($outputline);
echo "<p>";
for ($i = 0; $i < $lexeisline; $i++){
echo ($outputline[$i])."<br />";
}
echo "</p>";
?>

问题是它没有取消设置空变量(从strip_tags返回)并回显类似这样的内容。以下是否意味着它回显空字符串?任何意见或帮助将不胜感激。提前感谢

<p>
<br />
<br />
<br />
<br />Untitled Document
<br />
<br />
<br />er
<br />
<br /></p>

@phpmeh

 Array
    (
        [0] => 
        [1] => 
        [2] => 
        [3] => 
        [4] => Untitled Document
        [5] => 
        [6] => 
        [7] => er
        [8] => 
    )
4

3 回答 3

2

你只是在为每一个数数和呼应。如果您想跳过空白,请在循环中执行以下操作:

for ($i = 0; $i < $lexeisline; $i++){
if(!empty($outputline[$i]) echo ($outputline[$i])."<br />";
}

希望我理解正确。

于 2011-12-01T00:54:59.177 回答
1

对于您正在做的事情,这段代码看起来非常巴洛克。以下代码是否满足您的需求?

$lines = file('ht.html');
$lines = array_map('strip_tags', $lines);
$lines = array_map('trim', $lines);
$lines = array_filter($lines);

echo "<p>\n", implode("<br />\n", $lines), "\n</p>";
于 2011-12-01T01:46:55.333 回答
0

我可能错了……但是……

当你分解这些行时,我很确定它们有一个隐含的 /n ,这意味着它们永远不会为空。一个替代方案,虽然它有点慢,将是:

 strlen( $outline[$i] ) > 0 
于 2011-12-01T01:03:54.733 回答