📜  nl2br() php 代码示例

📅  最后修改于: 2022-03-11 14:53:46.256000             🧑  作者: Mango

代码示例2
// add to the functions file
function translateLineBreaks($string) {
    $result = nl2br ($string);
      return $result;
}