Documentation

Config
in package

Table of Contents

$configs  : array<string|int, mixed>
__construct()  : mixed
Config constructor.
all()  : array<string|int, mixed>
get()  : mixed
İstenilen config değerlerini döndürür, bulamazsa false döner.
has()  : bool
remove()  : bool
Girilen indexi bulup değerini null atar. Bulursa true, bulamazsa false döner.
set()  : mixed
Gönderilen index ve değeri varsa değiştirir, yoksa yenisini ekler.

Properties

$configs

private array<string|int, mixed> $configs

Methods

__construct()

Config constructor.

public __construct(array<string|int, mixed> &$configs) : mixed
Parameters
$configs : array<string|int, mixed>
Return values
mixed

all()

public all() : array<string|int, mixed>
Return values
array<string|int, mixed>

get()

İstenilen config değerlerini döndürür, bulamazsa false döner.

public get(string $key) : mixed
Parameters
$key : string

dizi indexlerinin (.) ile birleştirilmiş isimleri (index1.index2.index3).

Return values
mixed

has()

public has(string $key) : bool
Parameters
$key : string
Return values
bool

remove()

Girilen indexi bulup değerini null atar. Bulursa true, bulamazsa false döner.

public remove(string $key) : bool
Parameters
$key : string

dizi indexlerinin (.) ile birleştirilmiş isimleri (index1.index2.index3).

Return values
bool

set()

Gönderilen index ve değeri varsa değiştirir, yoksa yenisini ekler.

public set(string $key, mixed $value) : mixed
Parameters
$key : string

dizi indexlerinin (.) ile birleştirilmiş isimleri (index1.index2.index3).

$value : mixed
Return values
mixed

Search results