先将\r\n替换为<br>,然后再将\r与\n替换掉,而不是简单的舍弃为‘’。
function ? my_nl2br($s) ?
? { ?
? return ? str_replace("\n",'<br>',str_replace("\r",'<br>',str_replace("\r\n",'<br>',$s))); ?
? }
先将\r\n替换为<br>,然后再将\r与\n替换掉,而不是简单的舍弃为‘’。
function ? my_nl2br($s) ?
? { ?
? return ? str_replace("\n",'<br>',str_replace("\r",'<br>',str_replace("\r\n",'<br>',$s))); ?
? }