Function Forum_driver_ipb3->get_top_posters

Definitions

sources/forum/ipb3.php

  • Get the rows for the top given number of posters on the forum.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$limit integer No No required parameter N/A N/A The limit to the number of top posters to fetch

Returns

  • The rows for the given number of top posters in the forum
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Get the rows for the top given number of posters on the forum.
 *
 * @param  integer $limit The limit to the number of top posters to fetch
 * @return array The rows for the given number of top posters in the forum
 */

public function get_top_posters(int $limit) : array