public Select::range($start = NULL, $length = NULL)
Restricts a query to a given range in the result set.
If this method is called with no parameters, will remove any range directives that have been set.
$start: The first record from the result set to return. If NULL, removes any range directives that are set.
$length: The number of records to return from the result set.
\Drupal\Core\Database\Query\SelectInterface The called object.
Overrides SelectInterface::range
public function range($start = NULL, $length = NULL) { $this->range = $start !== NULL ? array('start' => $start, 'length' => $length) : array(); return $this; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Query!Select.php/function/Select::range/8.1.x