14 lines
311 B
PHP
14 lines
311 B
PHP
<?php
|
|
/**
|
|
* Here is your custom functions.
|
|
*/
|
|
|
|
function show(bool $bool, string $msg, array $data = []):array
|
|
{
|
|
return ['result' => $bool, 'msg' => $msg, 'data' => $data];
|
|
}
|
|
|
|
function retData(int $code, string $msg, array $data = []):array
|
|
{
|
|
return ['code' => $code, 'msg' => $msg, 'data' => $data];
|
|
} |