yinxu46/frappe-result

v1.0.5 2024-07-15 13:00 UTC

This package is not auto-updated.

Last update: 2024-11-18 14:44:24 UTC


README

thinkphp6|thinkphp8 API Result 类库

安装

composer require yinxu46/frappe-result

使用

助手函数

失败

public function success()
{
    return api_success($data = null, string $msg = "ok", int $code = 200);
}

成功

public function error()
{
    return api_error($msg = "fail", int $code = 200);
}