PHP nl2br() 函數(shù)
PHP nl2br() 函數(shù)
實(shí)例
在字符串中的新行(\n)之前插入換行符:
<?php
echo nl2br("One line.\nAnother line.");
?>
上面代碼的瀏覽器輸出如下:
One line.
Another line.
Another line.
上面代碼的 HTML 輸入如下(查看源代碼):
One line.<br />
Another line.
Another line.
運(yùn)行實(shí)例 ?
定義和用法
nl2br() 函數(shù)在字符串中的每個(gè)新行(\n)之前插入 HTML 換行符(<br> 或 <br />)。
語(yǔ)法
nl2br(string,xhtml)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
xhtml | 可選。一個(gè)表示是否使用兼容 XHTML 換行的布爾值:
|
技術(shù)細(xì)節(jié)
返回值: | 返回已轉(zhuǎn)換的字符串。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.0.5 之前,該函數(shù)插入 <br>。在 PHP
4.0.5 之后,該函數(shù)插入兼容 XHTML 的 <br />。 在 PHP 5.3 中,新增了 xhtml 參數(shù)。 |
更多實(shí)例
實(shí)例 1
通過(guò)使用 xhtml 參數(shù),在新行(\n)之前插入換行符:
<?php
echo nl2br("One line.\nAnother line.",false);
?>
上面代碼的瀏覽器輸出如下:
One line.
Another line.
Another line.
上面代碼的 HTML 輸入如下(查看源代碼):
One line.<br>
Another line.
Another line.
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 常量
- PHP 字符串
- PHP 文件處理
- PHP 發(fā)送電子郵件
- PHP array() 函數(shù)
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP count() 函數(shù)
- PHP end() 函數(shù)
- PHP list() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Directory 函數(shù)