nl2br
Description
Syntax
nl2br( string $string, bool $use_xhtml = true ): string
Parameters
string
The input string.
use_xhtml
Whether to use XHTML compatible line breaks or not.
Return
Returns the altered string.
Examples
1 · string
<? $string = "string\nstring\nstring\n"; $return = nl2br($string); echo $return;
string<br /> string<br /> string<br />
2 · use_xhtml · false
<? $string = "string\nstring\nstring\n"; $use_xhtml = false; $return = nl2br($string, $use_xhtml); echo $return;
string<br> string<br> string<br>
3 · use_xhtml · true
<? $string = "string\nstring\nstring\n"; $use_xhtml = true; $return = nl2br($string, $use_xhtml); echo $return;
string<br /> string<br /> string<br />
4 · newlines
<? $string = "r: \r" . "n: \n" . "rn: \r\n" . "PHP_EOL: " . PHP_EOL; $return = nl2br($string); echo $return;
r: <br /> n: <br /> rn: <br /> PHP_EOL: <br />
5 · newlines
<? $string = "r: \r" . "n: \n" . "rn: \r\n" . "PHP_EOL: " . PHP_EOL; $return = nl2br($string); echo $return;
r: <br /> n: <br /> rn: <br /> PHP_EOL: <br />
Links
String
- addcslashes
- addslashes
- bin2hex
- chop
- chr
- chunk_split
- convert_uudecode
- convert_uuencode
- count_chars
- crc32
- crypt
- echo
- explode
- fprintf
- get_html_translation_table
- hebrev
- hebrevc
- hex2bin
- html_entity_decode
- htmlentities
- htmlspecialchars
- htmlspecialchars_decode
- implode
- join
- lcfirst
- levenshtein
- localeconv
- ltrim
- md5
- md5_file
- metaphone
- nl_langinfo
- number_format
- ord
- parse_str
- printf
- quoted_printable_decode
- quoted_printable_encode
- quotemeta
- rtrim
- setlocale
- sha1
- sha1_file
- similar_text
- soundex
- sprintf
- sscanf
- str_contains
- str_decrement
- str_ends_with
- str_getcsv
- str_increment
- str_ireplace
- str_pad
- str_repeat
- str_replace
- str_rot13
- str_shuffle
- str_split
- str_starts_with
- str_word_count
- strcasecmp
- strchr
- strcmp
- strcoll
- strcspn
- strip_tags
- stripcslashes
- stripos
- stripslashes
- stristr
- strlen
- strnatcasecmp
- strnatcmp
- strncasecmp
- strncmp
- strpbrk
- strpos
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap