Answers for "what is nl2br in php"

PHP
2

nl2br php

because each OS have different ASCII chars for linebreak:
windows = rn
unix = n
mac = r
  
<?php
echo nl2br("foo isn'tn bar");
?>
Posted by: Guest on August-18-2020
0

nl2br() php

// add to the functions file
function translateLineBreaks($string) {
	$result = nl2br ($string);
  	return $result;
}
Posted by: Guest on July-26-2020

Browse Popular Code Answers by Language