Controller class
package | Default |
---|
handleShutdown() : void
If you need to customize the handling of shutdown, please override it with subclasses.
codeCoverageIgnore |
---|
main(string $controller, \Kore\array<string> $args) : void
string
controller namespace
\Kore\array<string>
path arguments
action() : void
The action is implemented in subclasses.
extractView(string $path, \Kore\array<mixed> $data = array()
) : string | false
string
view file path
\Kore\array<mixed>
response data
string
false
viewgetArg(string|null $key= null
, mixed $default= null
) : mixed
If no key is specified, all path arguments are returned.
string
null
path argument key
mixed
default value if there is no value specified in the key
mixed
path argumentsgetBody() : string
string
body datagetCookie(string|null $key= null
, mixed $default= null
) : mixed
If no key is specified, all cookie parameters are returned.
string
null
cookie parameter key
mixed
default value if there is no value specified in the key
mixed
cookie parametersgetFromArray(\Kore\array<mixed> $array, string|null $key= null
, mixed $default= null
) : mixed
If no key is specified, array is returned.
\Kore\array<mixed>
array
string
null
path key
mixed
default value if there is no value specified in the key
mixed
valuegetHeader(string $key, mixed $default = null
) : mixed
string
header key
mixed
default value if there is no value specified in the key
mixed
http headergetJsonBody() : \Kore\array<mixed>
\Kore\array<mixed>
body datagetMethod() : mixed
mixed
http methodgetPost(string|null $key= null
, mixed $default= null
) : mixed
If no key is specified, all post parameters are returned.
string
null
post parameter key
mixed
default value if there is no value specified in the key
mixed
post parametersgetQuery(string|null $key= null
, mixed $default= null
) : mixed
If no key is specified, all query parameters are returned.
string
null
query parameter key
mixed
default value if there is no value specified in the key
mixed
query parametersgetServer(string|null $key= null
, mixed $default= null
) : mixed
If no key is specified, all server parameters are returned.
string
null
server parameter key
mixed
default value if there is no value specified in the key
mixed
server parametersgetUserAgent() : mixed
mixed
User AgenthandleError(\Exception $e) : void
If you need to customize the handling of errors, please override it with subclasses.
\Exception
errors
\Exception |
---|
logLevel() : integer
The default is Log::LEVEL_DEBUG. If you need to customize, please override it with subclasses.
see | \Kore\Log |
---|
integer
log levelmoduleName() : string
The default is 'app'. If you need to customize, please override it with subclasses.
string
module namepreaction() : void
If you need to customize, please override it with subclasses.
redirect(string $url, integer $responseCode = 302
) : void
string
redirect url
integer
http status code, the default is 302
respondJson(\Kore\array<mixed> $data= array()
, integer $responseCode= 200
) : void
\Kore\array<mixed>
response data
integer
http status code, the default is 200
respondView(string $path, \Kore\array<mixed> $data= array()
, integer $responseCode= 200
) : void
string
view file path
\Kore\array<mixed>
response data
integer
http status code, the default is 200
$args : \Kore\array<string>
array()
$body : string
$controller : string