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");
試してみる