Files
ulthon_information/app/common/TextFormat.php
2020-08-07 23:49:50 +08:00

13 lines
169 B
PHP

<?php
namespace app\common;
class TextFormat
{
public static function br($content){
$content = str_replace("\n",'<br/>',$content);
return $content;
}
}