Documentation

Simple Examples - Getting Started with Zend_Paginator

Simple Examples

In this first example we won't do anything spectacular, but hopefully it will give you a good idea of what Zend_Paginator is designed to do. Let's say we have an array called $data with the numbers 1 to 100 in it, which we want to divide over a number of pages. We can use the static factory() method in the Zend_Paginator class to get a Zend_Paginator object with our array in it.

  1. // Create an array with numbers 1 to 100
  2. $data = range(1, 100);
  3.  
  4. // Get a Paginator object using Zend_Paginator's built-in factory.
  5. $paginator = Zend_Paginator::factory($data);

We're already almost done! The $paginator variable now contains a reference to the Paginator object. By default it is setup to display 10 items per page. To display the items for the currently active page, all you need to do is iterate over the Paginator object with a foreach loop. The currently active page defaults to the first page if it's not explicitly specified. We will see how you can select a specific page later on. The snippet below will display an unordered list containing the numbers 1 to 10, which are the numbers on the first page.

  1. // Create an array with numbers 1 to 100
  2. $data = range(1, 100);
  3.  
  4. // Get a Paginator object using Zend_Paginator's built-in factory.
  5. $paginator = Zend_Paginator::factory($data);
  6.  
  7. ?><ul><?php
  8.  
  9. // Render each item for the current page in a list-item
  10. foreach ($paginator as $item) {
  11.     echo '<li>' . $item . '</li>';
  12. }
  13.  
  14. ?></ul>

Now let's try and render the items on the second page. You can use the setCurrentPageNumber() method to select which page you want to view.

  1. // Create an array with numbers 1 to 100
  2. $data = range(1, 100);
  3.  
  4. // Get a Paginator object using Zend_Paginator's built-in factory.
  5. $paginator = Zend_Paginator::factory($data);
  6.  
  7. // Select the second page
  8. $paginator->setCurrentPageNumber(2);
  9.  
  10. ?><ul><?php
  11.  
  12. // Render each item for the current page in a list-item
  13. foreach ($paginator as $item) {
  14.     echo '<li>' . $item . '</li>';
  15. }
  16.  
  17. ?></ul>

As expected, this little snippet will render an unordered list with the numbers 11 to 20 in it.

These simple examples demonstrate a small portion of what can be achieved with Zend_Paginator. However, a real application rarely reads its data from a plain array, so the next section is dedicated to showing you how you can use Paginator to paginate the results of a database query. Before reading on, make sure you're familiar with the way Zend_Db_Select works!

In the database examples we will look at a table with blog posts called 'posts'. The 'posts' table has four columns: id, title, body, date_created. Let's dive right in and have a look at a simple example.

  1. // Create a select query. $db is a Zend_Db_Adapter object, which we assume
  2. // already exists in your script.
  3. $select = $db->select()->from('posts')->order('date_created DESC');
  4.  
  5. // Get a Paginator object using Zend_Paginator's built-in factory.
  6. $paginator = Zend_Paginator::factory($select);
  7.  
  8. // Select the second page
  9. $paginator->setCurrentPageNumber(2);
  10.  
  11. ?><ul><?php
  12.  
  13. // Render each the title of each post for the current page in a list-item
  14. foreach ($paginator as $item) {
  15.     echo '<li>' . $item->title . '</li>';
  16. }
  17.  
  18. ?></ul>

As you can see, this example is not that different from the previous one. The only difference is that you pass a Zend_Db_Select object to the Paginator's factory() method, rather than an array. For more details on how the database adapter makes sure that your query is being executed efficiently, see the Zend_Paginator chapter in the reference manual on the DbSelect and DbTableSelect adapters.

Copyright

© 2006-2021 by Zend by Perforce. Made with by awesome contributors.

This website is built using zend-expressive and it runs on PHP 7.

Contacts