Php echo not printing newline even within double quotes or using PHP_EOL

后端 未结 4 1859
终归单人心
终归单人心 2021-01-24 05:21

Here is a photo clip, I think it\'s pretty clear.
This is driving me crazy. I can\'t seem to get php to print a newline either on my localhost(using xampp) or on an online P

相关标签:
4条回答
  • 2021-01-24 05:59

    You can use <br> for new line in html. new line is used in case of console output window. You can see the references at w3schools paragraph

    0 讨论(0)
  • 2021-01-24 06:05

    Use this:

    <?php echo nl2br("This spans\r\nMultiple lines The new lines will be \r\noutput as well.",false); ?>
    
    0 讨论(0)
  • 2021-01-24 06:12

    Try \r\n instead of \n. Or you can also try <br> too.

    \n will display a new line if you check the HTML source code in your browser.

    Also http://www.go4expert.com/forums/showthread.php?t=8021 might help you understand a bit more.

    0 讨论(0)
  • 2021-01-24 06:18

    if you want to use HTML tag inside php, try this:

    echo "dkljaks aalksja klajklsa<br/>";
    
    echo "abc jjka kajkajs<br/>";
    

    and see here for br tag and if you don't want to use HTML tag. try this: nl2br() php function for line break.

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