Doctrine_Pager 在哪里?
我想用这个:
$pager = new Doctrine_Pager(
$query,
$page,
$results_per_page
);
$results = $pager->execute(array(), Doctrine::HYDRATE_ARRAY);
$num_results = $results->getNumResults();
但我似乎找不到学说寻呼机文件或类...... `$pager = new \Doctrine\Pager;不在那里...
我通常使用学说实体管理器:
$this->_doctrine = Zend_Registry::get('doctrineEm');
我是否必须下载这个,如果需要,从哪里下载?
i want to use this:
$pager = new Doctrine_Pager(
$query,
$page,
$results_per_page
);
$results = $pager->execute(array(), Doctrine::HYDRATE_ARRAY);
$num_results = $results->getNumResults();
but i cant seem to find the doctrine pager file or class...
`$pager = new \Doctrine\Pager; not there...
i usuall use the doctrine entity manager by:
$this->_doctrine = Zend_Registry::get('doctrineEm');
do i have to download this, if so, where from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Doctrine 2.0 中,他们消除了 Doctrine_Pager。
Doctrine_Pager 仅存在于 Doctrine 1.2 中。
我在 github 上发现 2.0 的扩展学说可能有用:
https://github.com/beberlei/DoctrineExtensions
https://github.com/whiteoctober/Pagerfanta
In Doctrine 2.0 they eliminated Doctrine_Pager.
Doctrine_Pager exist only in Doctrine 1.2.
I found on github doctrine of extensions for 2.0 that might be useful:
https://github.com/beberlei/DoctrineExtensions
https://github.com/whiteoctober/Pagerfanta