Function DatabaseDriver->get_first_id
Definitions
sources/database.php
- Get the ID of the first row in an auto-increment table (used whenever we need to reference the first).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: int
Returns
- First ID used
- Type: integer
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Get the ID of the first row in an auto-increment table (used whenever we need to reference the first).
*
* @return integer First ID used
*/
public function get_first_id() : int
* Get the ID of the first row in an auto-increment table (used whenever we need to reference the first).
*
* @return integer First ID used
*/
public function get_first_id() : int