“quebra de linha PHP” Respostas de código

PHP NEWLINE

"\r\n"
Unusual Unicorn

Nova linha em 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

quebra de linha PHP

<?php
  
  #On some platforms, <br> is accepted, but worldwide, \n is used
  
?>
Rick Astley

quebra de linha PHP em eco

echo "Thanks for your email" ."<br>". "Your orders details are below:"
red-kid

PHP Enter Break Line

The nl2br() function inserts HTML line breaks (<br> or <br />) 
in front of each newline (\n) in a string. Syntax. nl2br(string,xhtml). 
  
Abdullah al Mamun

PHP Nova linha

//let a variable contain multiple line
//add <br> tag in string
$variable = "123 <br> ";
Warrior

Respostas semelhantes a “quebra de linha PHP”

Perguntas semelhantes a “quebra de linha PHP”

Mais respostas relacionadas para “quebra de linha PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código