“Newline en php” Réponses codées

php newline

"\r\n"
Unusual Unicorn

Nouvelle ligne 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

Newline 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 Nouvelle ligne

echo "\n";
hateschoollovecoding

Nouvelle ligne PHP

echo "<br>";
xSynergyx

php pourquoi "\ n" pas une nouvelle ligne

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

Réponses similaires à “Newline en php”

Questions similaires à “Newline en php”

Plus de réponses similaires à “Newline en php” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code