PHP nl2br() basic function

后端 未结 3 1691
一个人的身影
一个人的身影 2020-12-10 09:56

Can somebody please help me with this mail script.

I\'m simply trying to send an html email and part of the message is from a user textarea, which puts in \\r\\n.

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-10 10:31

    $message_var_1 = 'test1 \r\n test2 \r\n test3';
    

    PHP parses \r and \n only within ", not within '. So nl2br won't apply here.

    $message_var_1 = "test1 \r\n test2 \r\n test3";
    $message = '
    '.nl2br($message_var_1).'
    ';

    This ought to work.

提交回复
热议问题