Making a new line with single quotes?

后端 未结 4 558
鱼传尺愫
鱼传尺愫 2020-12-21 10:03

Can I do a line break like this \'\\n\'?

Or do I must use double quotes - \"\\n\"?

相关标签:
4条回答
  • 2020-12-21 10:39

    No - \n in single quotes is '\n'.
    Yes - you have to use double quotes.

    0 讨论(0)
  • 2020-12-21 10:41

    just add

    .PHP_EOL;
    

    to the end of your line using single quotes and you will have a new line

    0 讨论(0)
  • 2020-12-21 10:46

    To output a newline (or any other control character for that matter) you must always use double quotes.

    An alternative to not use double quotes is chr() with the respective ASCII code as an argument:

    echo chr(10); // same as echo "\n";
    
    0 讨论(0)
  • 2020-12-21 10:49

    You have to use double quotes. Otherwise, PHP will literally output \n.

    http://php.net/manual/en/language.types.string.php

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