>  기사  >  백엔드 개발  >  ThinkPHP 截取字符串有关问题

ThinkPHP 截取字符串有关问题

WBOY
WBOY원래의
2016-06-13 13:52:11933검색

ThinkPHP 截取字符串问题
刚用ThinkPHP 一个截取字符串函数 但是模板里却输不出来

代码:
$news_list = $model_list->findall('',$fields,'dateline desc',$p->firstRow.','.$p->listRows);
  /*截取字符串*/  
  foreach ($news_list as $x=>$y) {
$news_list[$x]['content']=cut_str(Zmor_ireplace($y['content']),30,0,"UTF-8"); //截取字符串函数
}

  //模板输出
  $page = $p->show();  
  $this->assign('news_list',$news_list);



------解决方案--------------------
$news_list[$x]['content']=msubstr(Zmor_ireplace($y['content']),0,30,"UTF-8");
试下

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.