main
in package
Class main
Tags
Table of Contents
Properties
Methods
- __construct() : mixed
- __destruct() : mixed
- add() : bool
- Fügt einen Datensatz hinzu
- all() : array<string|int, mixed>|false
- Holt alle Datensätze
- delete() : bool
- Löscht einen Datensatz
- get() : string|false
- Liest einen Datensatz aus
- send_post() : bool
- update() : bool
- Aktualisiert einen Datensatz
Properties
$tconfig
protected
tab_config
$tconfig
Methods
__construct()
public
__construct() : mixed
__destruct()
public
__destruct() : mixed
add()
Fügt einen Datensatz hinzu
public
add(string $key, string $val) : bool
Parameters
- $key : string
-
Schlüssel
- $val : string
-
Wert
Return values
bool —- Im Erfolgsfall True, sonst false
all()
Holt alle Datensätze
public
all() : array<string|int, mixed>|false
Return values
array<string|int, mixed>|false —- Im Erfolgsfall ein Array, sonst False
delete()
Löscht einen Datensatz
public
delete(string $key) : bool
Parameters
- $key : string
-
Schlüssel
Return values
bool —Im Erfolgsfall True, sonst False
get()
Liest einen Datensatz aus
public
get(string $key) : string|false
Parameters
- $key : string
-
Schlüssel
Return values
string|false —Im Erfolgsfall ein String, sonst False
send_post()
public
send_post(array<string|int, mixed> $post) : bool
Parameters
- $post : array<string|int, mixed>
Return values
boolupdate()
Aktualisiert einen Datensatz
public
update(string $key, string $val) : bool
Parameters
- $key : string
-
Schlüssel
- $val : string
-
Wert
Return values
bool —- Im Erfolgsfall True, sonst False