Function __global->has_leader_board_since
Definitions
sources/leader_board.php
- See if a leader-board has been calculated since a particular cut-off time.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $row | array | No | No | required parameter | N/A | N/A | The leader-board row to check |
| $start | TIME | No | No | required parameter | N/A | N/A | The start time of the result set |
Returns
- Whether it has
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* See if a leader-board has been calculated since a particular cut-off time.
*
* @param array $row The leader-board row to check
* @param TIME $start The start time of the result set
* @return boolean Whether it has
*/
function has_leader_board_since(array $row, int $start) : bool
* See if a leader-board has been calculated since a particular cut-off time.
*
* @param array $row The leader-board row to check
* @param TIME $start The start time of the result set
* @return boolean Whether it has
*/
function has_leader_board_since(array $row, int $start) : bool

