timerlau / errcode
统一错误代码 For Laravel
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=5.5.0
This package is not auto-updated.
Last update: 2025-03-30 07:30:45 UTC
README
统一错误代码 for Laravel
系统要求
php >= 5.5
laravel >= 5.4
说明
~ 统一的错误代码,方便管理
安装
composer require timerlau/errcode
配置文件
修改 config/app.php 如下:
1. providers 增加 Timerlau\Errcode\ErrcodeServiceProvider::class,
2. aliases 增加 'Errcode' => Timerlau\Errcode\Facades\Errcode::class,
php artisan vendor:publish --provider="Timerlau\Errcode\ErrcodeServiceProvider"
使用
use Errcode;
Errcode::success(); // 获取错误码信息
Errcode::success(true); // 获取错误码代码
Errcode::api_not_found(); // 获取错误码信息
Errcode::api_not_found(true); // 获取错误码代码
Errcode::show(); // 可以查看所有错误代码