将 \r\n 替换为 PHP
我有一个帖子表单,它将我的文本插入MySQL数据库中。
我使用
$post_text = mysql_real_escape_string(htmlspecialchars($_POST['text']));
并希望替换自动添加的。\r\n
我试过了
$text = str_replace('\\r\\n','', $text);
$text = str_replace('\r\n','', $text);
$text = str_replace('\\R\\N','', $text);
$text = str_replace('\R\N','', $text);
$text = str_replace('/\r\\n','', $text);
$text = str_replace('/r/n','', $text);
$text = str_replace('/\R\\N','', $text);
$text = str_replace('/R/N','', $text);
但始终包含在我的数据库条目中。\r\n
我该如何解决这个问题?