“nueva línea PHP” Código de respuesta

PHP Newline

"\r\n"
Unusual Unicorn

nueva línea en 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

nueva línea en 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 Nueva línea

echo "\n";
hateschoollovecoding

nueva línea PHP

echo "<br>";
xSynergyx

php por qué " n" no nueva línea

if "test\n" not return, new line
  1st solution:echo "test".PHP_EOL;
  2nd solution:<?php header('Content-type: text/plain'); ?>
  3rd solution:"<br />" instead of "\n" or "\r\n" 
CuteKittyCat

Respuestas similares a “nueva línea PHP”

Preguntas similares a “nueva línea PHP”

Más respuestas relacionadas con “nueva línea PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código