Functions

Get array values recursively

array_get_recursive(\array<mixed> $array, string $key, mixed $default = null) : mixed

If the key is passed dot-delimited, it is interpreted as an array path.

package Default

Parameters

$array

\array<mixed>

array

$key

string

key

$default

mixed

default value

Returns

mixedvalue

Initialize the application

bootstrap(string $app_dir, string $app_ns) : void
package Default

Parameters

$app_dir

string

Application Directory

$app_ns

string

Application NameSpace

Add query parameters to URL

url_add_query(string $url, \array<mixed> $params) : string
package Default

Parameters

$url

string

URL

$params

\array<mixed>

Query parameters

Returns

stringURL with query parameters

Classes, interfaces, and traits

Application

Application class

« More »

Command

Command class

« More »

Config

Config class

« More »

Controller

Controller class

« More »

DB

DB class

« More »

HttpClient

HttpClient class

« More »

HttpResponse

HttpResponse class

« More »

LockManager

Managing Command Lock

« More »

Log

Log class

« More »

Constants

 

APP_DIR

APP_DIR = $app_dir 
package Default
 

APP_NS

APP_NS = $app_ns 
package Default
 

COMMANDS_DIR

COMMANDS_DIR = APP_DIR . '/commands' 
package Default
 

COMMANDS_NS

COMMANDS_NS = APP_NS . '\\commands' 
package Default
 

CONFIG_DIR

CONFIG_DIR = APP_DIR . '/config' 
package Default
 

CONTROLLERS_DIR

CONTROLLERS_DIR = APP_DIR . '/controllers' 
package Default
 

CONTROLLERS_NS

CONTROLLERS_NS = APP_NS . '\\controllers' 
package Default
 

LIBS_DIR

LIBS_DIR = APP_DIR . '/libs' 
package Default
 

LOGS_DIR

LOGS_DIR = TMP_DIR . '/logs' 
package Default
 

TMP_DIR

TMP_DIR = dirname(APP_DIR) . '/tmp' 
package Default
 

VIEWS_DIR

VIEWS_DIR = APP_DIR . '/views' 
package Default