在使用多语言版本时,遇到了分页没有多语言时怎么处理?
这个需要改动分页php文件,文件目录 根目录corelibrary hinkpaginatordriver。eyou.php是pc端,mobile.php是手机端
然后打开eyou.php修改pc端分页
打开后找到下面代码,替换红色部分
1,大改在97行
/**
* 共n页 n条
* @param string $text
* @return string
*/
protected function gettotalresult()
{
return sprintf(
''.lang('sys5').'',
$this->lastpage,
$this->total
);
}
2,大改在164行
$pagearr = array();
if (in_array('index', $listitemarr)) {
array_push($pagearr, $this->getfirstbutton(''.lang('sys1').''));
}
if (in_array('pre', $listitemarr)) {
array_push($pagearr, $this->getpreviousbutton(''.lang('sys2').''));
}
if (in_array('pageno', $listitemarr)) {
array_push($pagearr, $this->getlinks($listsize));
}
if (in_array('next', $listitemarr)) {
array_push($pagearr, $this->getnextbutton(''.lang('sys3').''));
}
if (in_array('end', $listitemarr)) {
array_push($pagearr, $this->getlastbutton(''.lang('sys4').''));
}
修改完成后前端就会显示多语言分页了。手机端也是同理修改