摘要:
获取请求# 要通过依赖注入的方式来获取当前HTTP请求的实例,你应该在控制器方法中类型提示Illuminate\Http\Request 传入的请求的实例通过 服务容器自动注入: <?php namespace App\Http\Controllers; use Illuminate\Http\Re 阅读全文
摘要:
-- 删除index_name 索引 drop index index_name on user; show index from user \G; -- 创建新索引列组成,index_pinyin为复合索引名称 create index index_pinyin on user(username, 阅读全文
摘要:
1.Git自动补全 假使你使用命令行工具运行Git命令,那么每次手动输入各种命令是一件很令人厌烦的事情。 命令: cd ~ curl https://raw.github.com/git/git/master/contrib/completion/git-completion.bash -o ~/. 阅读全文