phpcms v9系统点击图片翻页的实现办法,已经修正了错位问题。分享给那些有相同问题的朋友。方法如下:
请将内容页模板show.html中的{$content}替换为
{if $pages}
{php $i=strrpos($pages,"href=");}
{php $str = substr($pages,$i+5,-13);}
{php $content = str_replace("<img","<font color=#ff0033>点击图片 进入下一页</font><br/><a href=".$str."<img",$content);}
{php echo str_replace("/>","/></a>",$content);}
{else}{$content}{/if}
重新生成内容页,即可。