标签:let span php variable 定义 callback scope call ack
web 页面路由都是在routes/web.php 文件中定义
不同的方法对应不同的http请求
Route::get($uri, $callback);
Route::post($uri, $callback);
Route::put($uri, $callback);
Route::patch($uri, $callback);
Route::delete($uri, $callback);
Route::options($uri, $callback);
标签:let span php variable 定义 callback scope call ack
原文地址:http://www.cnblogs.com/yeyuansheng/p/7119018.html