PHP Class S

Show file Open project: yinhe/yincart Class Usage Examples

Public Methods

Method Description
stripTags ( string $str ) : string 将带有html标签的富文本内容,去掉标签,去掉空格
trimBlank ( type $str, type $add = '•' ) : string 将用\n换行分开的字串 去掉每行收尾空格 去掉空格行 for example: $str = '★团购有效期至2013-10-31(过期无效) 这里是空行 0 //以0开头的行 fdfgdsfgsdfg //这行前面是空格 ★预约电话 010—57111077 QQ: 2274127158 2642973057 1764845026 2271627063' use like this : S::trimBlank($str) result: $str = ★团购有效期至2013-10-31(过期无效) 0 fdfgdsfgsdfg ★预约电话 010—57111077 QQ: 2274127158 2642973057 1764845026 2271627063 ·

Method Details

stripTags() public static method

将带有html标签的富文本内容,去掉标签,去掉空格
public static stripTags ( string $str ) : string
$str string
return string

trimBlank() public static method

将用\n换行分开的字串 去掉每行收尾空格 去掉空格行 for example: $str = '★团购有效期至2013-10-31(过期无效) 这里是空行 0 //以0开头的行 fdfgdsfgsdfg //这行前面是空格 ★预约电话 010—57111077 QQ: 2274127158 2642973057 1764845026 2271627063' use like this : S::trimBlank($str) result: $str = ★团购有效期至2013-10-31(过期无效) 0 fdfgdsfgsdfg ★预约电话 010—57111077 QQ: 2274127158 2642973057 1764845026 2271627063 ·
public static trimBlank ( type $str, type $add = '•' ) : string
$str type
$add type 默认在每行抬头添加一个点
return string