replace \n with actual new line character code

前端 未结 5 2115
孤街浪徒
孤街浪徒 2021-02-19 03:32

I\'m pulling content from a DB that has been sanitized using mysql_real_escape_string. Accordingly the new line characters now appear as \"\\n\". The issue is that this content

相关标签:
5条回答
  • 2021-02-19 04:14

    I'm pulling content from a DB that has been sanitized using mysql_real_escape_string. Accordingly the new line characters now appear as "\n"

    If you've not done anything to the raw data pulled back from the database then the ptoblem is that it has been 'sanitized' twice when inserted.

    C.

    0 讨论(0)
  • 2021-02-19 04:21

    why not ...

    echo str_replace('\\n', PHP_EOL, "few lines\nof text here,\nblah, blah! etc!");
    
    0 讨论(0)
  • 2021-02-19 04:24
    echo '<pre>'.str_replace('\n', "\n", $string).'</pre>';
    
    0 讨论(0)
  • 2021-02-19 04:27
    str_replace("\\n","\n",$data);
    
    0 讨论(0)
  • 2021-02-19 04:29

    This might help a bit:

    echo('test\ntest'); shows as

    test test

    but echo("test\ntest"); shows as

    test

    test

    0 讨论(0)
提交回复
热议问题