廿二、在textarea中换行,然后在js中会受影响

解决办法:

$str="Line1\nLine2\rLine3\r\nLine4\n";
$order=array("\r\n","\n","\r");
$replace='
'; $newstr=str_replace($order,$replace,$str);

From:https://www.cnblogs.com/kenshinobiy/p/5584255.html

效果:在textarea中换行操作,在db中show:


你可能感兴趣的:(廿二、在textarea中换行,然后在js中会受影响)