Doctrine_Pager 在哪里?

发布于 2024-11-25 19:11:56 字数 466 浏览 0 评论 0原文

我想用这个:

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁吢 2024-12-02 19:11:56

在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文