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

2018-05-23  本文已影响5人  yuzhan550

解决办法:

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

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

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


上一篇 下一篇

猜你喜欢

热点阅读