-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Description
/**
* 过滤文字回复\r\n换行符
* @param string $text
* @return string|mixed
*/
private function _auto_text_filter($text) {
if (!$this->_text_filter) return $text;
return str_replace("\r\n", "\n", $text);
}
以上为实现文本消息回复的换行,其中str_replace("\r\n", "\n", $text);是无法识别到\r\n.
正确应为
return str_replace("\\r\\n", "\n", $text);
Metadata
Metadata
Assignees
Labels
No labels