“PHP Newline” Ответ

PHP Newline

"\r\n"
Unusual Unicorn

Новая линия в PHP

<?php
echo "Hello world this is example \r\n in php.";
echo "<br>";
echo nl2br("You will find the \n newlines in this string \r\n on the browser window.");
?>
Ankur

Newline в PHP

<?php
 echo nl2br("If you want that '\n' works. \n Then use nl2br() function!");
 echo "<br> can also be used.";
 echo "nl2br() is in-built function whereas <br> is html tag";
?>
Wandering Worm

PHP Новая линия

echo "\n";
hateschoollovecoding

Новая линия PHP

echo "<br>";
xSynergyx

PHP Newline

‘\n’ or ‘\r\n’ is the easiest way to embed newlines in a PHP string
Chris P Bacon

Ответы похожие на “PHP Newline”

Вопросы похожие на “PHP Newline”

Больше похожих ответов на “PHP Newline” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования