小白兔晒黑了

导航

 

2020年7月29日

摘要: 配置文件 \.env 开发模式 APP_DEBUG=true 线上模式 APP_DEBUG=false HTTP错误代码 public function error() { $error = true; if($error){ abort(503); } } 跳转到503页面 日志 LOG_CHAN 阅读全文
posted @ 2020-07-29 22:24 小白兔晒黑了 阅读(517) 评论(0) 推荐(0) 编辑
 
摘要: Laravel为各种不同的缓存系统提供一致的API Laravel支持各种常见的后端缓存系统,如File Memcached和Redis 主要方法 put() add() forever() get() pull() forget() has() 使用方式 use Illuminate\Suppor 阅读全文
posted @ 2020-07-29 17:44 小白兔晒黑了 阅读(646) 评论(0) 推荐(0) 编辑