起http服务
php artisan serve –port 8000 & # & 后台运行
缓存配置
php artisan config:cache
保养模式(维护停止服务)
php artisan down
php artisan up
路由
可用路由方法
Route::get($uri, $callback);
Route::post($uri, $callback);
Route::put($uri, $callback);
Route::patch($uri, $callback);
Route::delete($uri, $callback);
Route::options($uri, $callback);
//多
Route::match(['get', 'post'], '/', function () {
//
});
//任意
Route::any('foo', function () {
//
});
修改类来修改前缀和其他路由组选项。routes/api.php RouteServiceProvider /api RouteServiceProvider
访问当前路线 $route = Route::current();
$name = Route::currentRouteName();
$action = Route::currentRouteAction();
控制器中改写方法名称 public function boot() { Route::resourceVerbs([ ‘create’ => ‘crear’, ‘edit’ => ‘editar’, ]); }
依赖注入和控制反转是对同一件事情的不同描述,从某个方面讲,就是它们描述的角度不同。
依赖注入是从应用程序的角度在描述,可以把依赖注入,即:应用程序依赖容器创建并注入它所需要的外部资源;
而控制反转是从容器的角度在描述,即:容器控制应用程序,由容器反向的向应用程序注入应用程序所需要的外部资源。
问答
https://segmentfault.com/a/1190000007209266
https://segmentfault.com/a/1190000015173300