菜鸟问题
我有一个使用php阅读的文本文件。这是文本行的示例。
News.com |现场直播:“无论今天发生什么,历史都会审判他们”-市长遇到麻烦了!。
<?php
$lines = explode("\n", file_get_contents('rss.txt'));
$line = $lines[mt_rand(0, count($lines) - 1)];
list($title, $description) = explode('|',$line);
?>
<?php echo $title; ?><br>
<?php echo $description; ?>
显示为:
News.com
LIVE: 'Whatever happens today, history will judge them' - Mayor in trouble!
如何在“-”处创建新行,使其看起来像这样:
News.com
LIVE: 'Whatever happens today, history will judge them'
Mayor in trouble!
答案 0 :(得分:1)
以“-”分隔。
$twoParts = explode("-",$description);
echo $twoParts[0]."<br />".$twoParts[1];
或使用str_replace()
str_replace($description, " - ", "<br>");