长春门户网站's Archiver
首页
›
建站技术
› php 重写分页器 CLinkPager的实例
malike
发表于 2018-2-11 11:48:09
php 重写分页器 CLinkPager的实例
1、自定义的分页器类放在哪里?
有两个位置可以放,
第一种是放在 protected/extensions 中,在使用是import进来,或在config文件中import进来;
第二种是放在 protected/components 中,作为组件存在,不需要import
2、用派生方式是最好的
class MyPager extends CLinkPager
页:
[1]
查看完整版本:
php 重写分页器 CLinkPager的实例