您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在php中利用Laravel定義路由,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
1、執行速度快。2、具有很好的開放性和可擴展性。3、PHP支持多種主流與非主流的數據庫。4、面向對象編程:PHP提供了類和對象。5、版本更新速度快。6、具有豐富的功能。7、可伸縮性。8、功能全面,包括圖形處理、編碼與解碼、壓縮文件處理、xml解析等。
1.get方式
Route::get('/', function () { return view('welcome'); });
好處是把回調的實現和使用場所隔離,這段代碼是意思是,當get方式訪問根目錄時返回welcome視圖。
2.info方法
Route::get('admin/info','Admin\IndexController@info');
訪問http://your-app.dev/admin/info時,調用命名空間Admin下的IndexController控制器里的info方法。這樣寫是不是麻煩,所以有了路由組,統一指定中間件,前綴和命名空間。
3.使用路由
//在瀏覽器直接訪問,跳轉到welcome視圖,視圖路徑在public/resources/views/ Route::get('/', function () { return view('welcome'); }); //在瀏覽器直接訪問,返回hello world Route::get("route1", function () { return "hello world"; }); //因為是post請求,不可以在瀏覽器地址欄直接訪問 Route::post("route2", function () { return "hello world"; }); //match: 可以定義接收get或post請求 Route::match(['get','post'], "reute3", function () { return "hello world"; }); //any: 可以接收get和post請求 Route::any("route4", function () { return "hello world"; }); //路由接收參數,php中的字符串拼接用 "." Route::get("user1/{id}", function($id){ return "id-->" . $id; }); //在user2/{id?} 后面加個問號代表參數不是必要的,可以在function中給個默認值 Route::get("user2/{id?}", function($id = 5){ return "id-->" . $id; }); //參數校驗,在最后面加上正折表達,這里代表username只能是字母 Route::get("user3/{username}", function($username) { return "username-->" . $username; })->where("username","[A-Za-z]+"); //路由別名,只要在后面加個數組,注意數組第一個元素是"as" => "center" ,第二個元素是function Route::get("user4/mamber-center", ["as" => "center" , function(){ //使用routes可以返回對應的路徑 return route("center"); }]); //路由群組,加前綴,member.可以通過member/user1訪問到第一個, //通過member/user2訪問到第二個 Route::group(["prefix" => "member"], function(){ Route::get("user1",function(){ return "hello world"; }); Route::get("user2",["as" => "group_route", function(){ return route("group_route"); }]); });
上述內容就是怎么在php中利用Laravel定義路由,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。