PHP函數nl2br()與自訂函數nl2p()換行用法及執行個體分析

來源:互聯網
上載者:User
這篇文章主要介紹了PHP函數nl2br()與自訂函數nl2p()換行用法,結合執行個體形式分析PHP函數nl2br實現換行功能的優缺點及自訂函數nl2p換行功能的提示,需要的朋友可以參考下

使用情景

很多場合我們只是簡單用textarea擷取使用者的長篇輸入,而沒有用編輯器。使用者輸入的換行以“\n”的方式入庫,輸出的時候有時候會沒有換行,一大片文字直接出來了。這個時候可以根據庫裡的“\n”給文字換行。PHP有內建的函數nl2br(),我們也可以自訂函數nl2p()。

先來看看nl2br() 函數吧。

定義和用法

nl2br() 函數在字串中的每個新行 (\n) 之前插入 HTML 分行符號 (<br />)。

一個簡單的例子:

<?php$str = "Welcome to www.jb51.net";echo nl2br($str);?>

運行結果的HTML代碼:

Welcome to <br />www.jb51.net

nl2p

nl2br 有個缺點,比如要用CSS做到段落縮排就比較麻煩,這個時候就需要 nl2p 了。將br換行換成段落p換行,比較簡單是直接替換:

<?phpfunction nl2p($text) { return "<p>" . str_replace("\n", "</p><p>", $text) . "</p>";}?>

比較詳細的函數,可以試下:

/** * Returns string with newline formatting converted into HTML paragraphs. * * @param string $string String to be formatted. * @param boolean $line_breaks When true, single-line line-breaks will be converted to HTML break tags. * @param boolean $xml When true, an XML self-closing tag will be applied to break tags (<br />). * @return string */function nl2p($string, $line_breaks = true, $xml = true){  // Remove existing HTML formatting to avoid double-wrapping things  $string = str_replace(array('<p>', '</p>', '<br>', '<br />'), '', $string);  // It is conceivable that people might still want single line-breaks  // without breaking into a new paragraph.  if ($line_breaks == true)    return '<p>'.preg_replace(array("/([\n]{2,})/i", "/([^>])\n([^<])/i"), array("</p>\n<p>", '<br'.($xml == true ? ' /' : '').'>'), trim($string)).'</p>';  else     return '<p>'.preg_replace("/([\n]{1,})/i", "</p>\n<p>", trim($string)).'</p>';}

總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.