我正在从 textarea 向 MySQL 数据库添加文本。所有换行符都转换为 \r\n 我可以使用以下 scipt 在 html 中正确显示新行:
function solver_nl2br($e){
$output = str_replace("\\r\\n", "<br/>", $e);
return $output;
}
但是当我试图在 textarea 中编辑文本时,我所能看到的只是\r\n
新行。
我可以使用什么功能在 textarea 中显示换行符而不是换行符?