Get the cursor of the next reuslt page.
This method returns the cursor only when this object was returned by the functions like Tuitter::getFollowers with cursor option.
getNextCursor()
Returns the numerical cursor of the next result page.
$opt = array('cursor' => -1); $users = $tuitter->getFollowers($opt); // do something to the first page// specifies the cursor of the next page $opt['cursor'] = $users->getNextCursor(); $users = $tuitter->getFollowers($opt); // do something to the next page // :