2

http://sg2.php.net/manual/en/function.nl2br.php有一个例子

<?php
$string = "This\r\nis\n\ra\nstring\r";
echo nl2br($string);
?>

这返回

This<br />
is<br />
a<br />
string<br />

我想要的是能够用 this 替换所有换行符<w:br />。而且我不想再看到任何换行符。

换句话说,我想回来

This<w:br />is<w:br />a<w:br />string<w:br />

我该如何做到这一点?

4

1 回答 1

2

当我把问题写到一半时,我想出了答案。

以防万一,其他人也有同样的问题。

/**
 *
 * Replace newline
 *
 * Replace newlines with something else
 *
 * @param $subject String The subject we are searching for newlines and replace
 * @param $replace String The replacement for the newlines
 * @return String The new subject with the newlines replaced
 */     
    function replaceNewLines($subject, $replace) {
        return str_replace(array("\r\n", "\n\r", "\n", "\r"), $replace, $subject);
    }

然后你调用函数

$replacedContent = replaceNewLines($content, "<w:br />");
于 2013-09-10T07:57:53.860 回答