mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-02 02:42:48 +08:00
13 lines
169 B
PHP
13 lines
169 B
PHP
<?php
|
|
|
|
namespace app\common;
|
|
|
|
class TextFormat
|
|
{
|
|
public static function br($content){
|
|
$content = str_replace("\n",'<br/>',$content);
|
|
|
|
return $content;
|
|
}
|
|
}
|