“PHP Newline” Code-Antworten

PHP Newline

"\r\n"
Unusual Unicorn

neue Linie in 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 in 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 neue Linie

echo "\n";
hateschoollovecoding

Neue Linie PHP

echo "<br>";
xSynergyx

PHP Newline

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

Ähnliche Antworten wie “PHP Newline”

Fragen ähnlich wie “PHP Newline”

Weitere verwandte Antworten zu “PHP Newline” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen