You are here

function DB_result::getRowCounter in Flickr API 5

Tells which row number is currently being processed

Return value

integer the current row being looked at. Starts at 1.

File

phpFlickr/PEAR/DB.php, line 1331

Class

DB_result
This class implements a wrapper for a DB result set

Code

function getRowCounter() {
  return $this->row_counter;
}