用php从字符串中删除¶

时间:2012-07-20 09:15:49

标签: php mysql preg-replace str-replace

我想从字符串中删除¶段落标记。 我已经尝试过strip_tags和preg_replace,但它不起作用。该字符串位于mysql记录中。我之前尝试将其删除,然后将其保存在数据库中并显示之前,但似乎没有任何效果。

任何帮助表示感谢。

2 个答案:

答案 0 :(得分:5)

用¶显示你的真实字符串,因为这很有效:

<?php

$string = 'Hi¶ this is a string with a paragraph¶';
$string = str_replace( "¶", "", $string );
echo $string;

?>

输出

Hi this is a string with a paragraph

答案 1 :(得分:1)

这对我有用

$mystring = preg_replace( '/\s+/', ' ', $mystring);

从字符串

中删除白色间距