展开全部
substr可以截断字符串,但是不能显示省略号,用 Smarty 的的 truncate 方法可以把页面的字符串截断并显示省略号。
追问
这样也能截断,但不知道怎样截断后加省略号!不满418字节不加省略号。
追答
php的函数是不能加省略号的,只能用 Smarty 。先把Smarty下载放到你的目录下面。
cache_dir='cache';
$this->caching=false;
$this->cache_lifetime=60;
$this->compile_dir='cache';
$this->template_dir="view";
$this->left_delimiter='{';
$this->right_delimiter='}';
}
$one=new controller();
$one->assign('row',$row['content']);
$one->display('a.html');
}
?>
a.html
{$row|truncate:418:'......'}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function msubstr($str, $start=0, $length, $charset="utf-8", $suffix=true) {
if(function_exists("mb_substr"))
$slice = mb_substr($str, $start, $length, $charset);
elseif(function_exists('iconv_substr')) {
$slice = iconv_substr($str,$start,$length,$charset);
}else{
$re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
$re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
$re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
$re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
preg_match_all($re[$charset], $str, $match);
$slice = join("",array_slice($match[0], $start, $length));
}
return $suffix ? $slice.'...' : $slice;
}
if(function_exists("mb_substr"))
$slice = mb_substr($str, $start, $length, $charset);
elseif(function_exists('iconv_substr')) {
$slice = iconv_substr($str,$start,$length,$charset);
}else{
$re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
$re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
$re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
$re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
preg_match_all($re[$charset], $str, $match);
$slice = join("",array_slice($match[0], $start, $length));
}
return $suffix ? $slice.'...' : $slice;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
strsub 截会出现乱码,因为他是按字节来截取的,而GBK汉字是2个字节,字母或数字是一个字节,例如你选了截取10个,当中有一个字母,其它是汉字,那么最后一个就会是乱码
mb_strsub 这个不会,只是有一点不好,会把数字和字母当做一个字符来算
mb_strsub 这个不会,只是有一点不好,会把数字和字母当做一个字符来算
追问
这样也能截断,但不知道怎样截断后加省略号!不满418字节不加省略号。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
mb_strsub 函数,用好后在下面链接一个省略号就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
strsub
追问
include_once('libs/Smarty.class.php')//导入Smarty
//DW提示语法错误 class controller extends Smarty//继承Smarty
{
public function __construct()
{
parent::__construct();
$this->right_delimiter='}';
}
//DW提示语法错误 $one=new controller();
$one->assign('row',$row['content']);
$one->display('template/huihui/index.tpl.php');
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询