The following code produces a whitespace after each newline and I don’t know why. Please help, how can I make the same functionality without adding whitespaces?
JavaScript
x
<?php
$test = "Hello WorldnHello World";
$test = preg_replace ( "/([^s]{80}?)/" , "\1<br />" , trim ( nl2br ( strip_tags ( $test, '<br>' ) ) ) );
echo $test;`
?>
Advertisement
Answer
I did the test and I didn’t notice any whitespace after the use of the nl2br()
function.
JavaScript
$string = "Hello WorldnHello World";
$string = nl2br ($string);
Output
JavaScript
Hello World<br />n
Hello World
It is worth noting that this function preserves the newlines.