45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:怎么样在CI框架中截取字符串函数?

怎么样在CI框架中截取字符串函数?

2016-06-21 14:01:32 来源:www.45fan.com 【

怎么样在CI框架中截取字符串函数?

Laravel:

function limit($value, $limit = 100, $end = '...')
{
 if (mb_strwidth($value, 'UTF-8') <= $limit) {
  return $value;
 }

 return rtrim(mb_strimwidth($value, 0, $limit, '', 'UTF-8')).$end;
}

Ci:

function word_limiter($str, $limit = 100, $end_char = '…')
{
 if (trim($str) === '')
 {
  return $str;
 }

 preg_match('/^\s*+(?:\S++\s*+){1,'.(int) $limit.'}/', $str, $matches);

 if (strlen($str) === strlen($matches[0]))
 {
  $end_char = '';
 }

 return rtrim($matches[0]).$end_char;
}

本文地址:http://www.45fan.com/bcdm/54352.html
Tags: Laravel 截取 框架
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部