日期:2014-05-17 浏览次数:20415 次
$str = file_get_contents("http://vwvvv.sinaapp.com/kww.php?txt=30/30826/5215401"); $str=iconv("gb2312","UTF-8",$str); echo nl2br($str);
------解决方案--------------------
明白了,是想让给document.writeln的串不因为换行符而报错吧?
js的续行符是“\”,你在每个自然行结束处加一个 \ 字符就可以了
php 代码就是
$text = parg_replace("/[\r\n]+/s", '\\n', $text);