- 论坛徽章:
- 0
|
代码部分如下:
$sql="这部分就不拿出来见笑了,功能没问题";
$result= $db->Execute($sql);
while ($row = $result->FetchRow()) {
$rsdate = date('Y-m-d h:d:s',$row['date']);
$rstitle = htmlspecialchars($row['title']);
$tplstr = trim(strip_tags($row['contents']));
$tplstr = str_replace(" ","",$tplstr);
$rscontents = mb_substr($tplstr,0,200,"UTF-8");
print <<< END
<item>
<title>$rstitle</title>
<link>$row[weblog]</link>
<pubDate>$rsdate</pubDate>
<guid>$rstitle</guid>
<description><![CDATA[$rscontents]]></description>
部分网页没问题,但是有那么几个总是说源代码有错误,contents部分包含的东西很杂,有图片标签啊、还有一些字体样式等等。。。
先谢谢各位了,帮我想想哪有可能会出问题,我自己再去排查! |
|