搜尋
首頁後端開發php教程如何在Laravel中驗證路由參數?

如何在Laravel中驗證路由參數?

Sep 01, 2023 pm 02:41 PM
laravel驗證路由參數

如何在Laravel中驗證路由參數?

在 Laravel 中,路由在 paths/ 資料夾中定義。路由在 web.php 檔案中定義。該檔案是在 laravel 安裝完成後建立的。 Laravel 路由接受 URI 和閉包函數,如下所示 -

use Illuminate\Support\Facades\Route;
Route::get('/student', function () {
   return 'Hello Student';
});

在web/routes.php中定義的路由被分配到web中間件組中,並且它們 具有會話狀態和CSRF保護。您也可以在路由中呼叫控制器 如下圖 -

use Illuminate\Support\Facades\Route;
use App\Http\Controllers\StudentController;
Route::get('student', [StudentController::class, 'index']);

以下是您可以在應用程式中使用的路由方法:

  • Route::get($ uri, $回呼函數或控制器);

  • #Route::post($uri, $回呼函數或控制器);

  • #Route::put($uri, $回呼函數或控制器);

  • #Route::patch($uri, $回呼函數或控制器);

  • #Route::delete($uri, $回呼函數或控制器);

  • #Route::options($uri, $回呼函數或控制器);

#路由參數驗證

路線參數位於大括號內,所給的名稱包含字母數字字元。除了字母數字之外,您在選擇路由參數名稱時還可以使用底線。

文法

路由參數的語法如下圖−

Route::get('/user/{myid}', function ($myid) {
   //
});

這裡myid是我們要進一步使用的路由參數。

多個路由參數

您可以像下面的語法所示,擁有多個路由參數。

Route::get('/students/{post}/feedbacks/{feedback}', function ($postId, $feedbackId) {
   //
});

在上述情況下,有兩個路由參數:{post}和{feedback}

可選參數

您也可以為路由新增可選參數。可選參數並不總是可用,參數後面用?表示。可選參數的語法如下所示 −

Route::get('/students/{myname?}', function ($myname = null) {
   return $myname;
});

這裡 myname 是一個可選參數。

Laravel有一些方法可以幫助驗證參數。它們是where(),whereNumber(),whereAlpha()和whereAlphaNumeric()。

Example 1

的中文翻譯為:

範例1

使用where()方法

where()方法在路由上定義,它將接受參數名稱和應用於參數的驗證。如果有多個參數,它將以數組形式接受,其中鍵為參數名稱,值為要應用於鍵的驗證規則。

Route::get('/student/{studentname}', function ($studentname) {
   return $studentname;
})->where('studentname', '[A-Za-z]+');

輸出

輸出為 −

disha

在上述情況下,學生姓名必須包含 A-Z 或 a-z 或兩者的混合。因此以下是有效的網址 -

http://localhost:8000/student/DISHA
http://localhost:8000/student/dishaSingh.

無效網址 -

http://localhost:8000/student/dishaSingh123

範例 2

現在讓我們使用 where() 方法來檢查多個參數。

Route::get('/student/{studentid}/{studentname}', function ($studentid, $studentname){
   return $studentid."===".$studentname;
})->where(['studentid' => '[0-9]+', 'studentname' => '[a-z]+']);
在上述情況中,路由參數是studentid和studentname。 studentid必須 是 0-9 之間的數字,學生姓名必須小寫。 需要翻譯的內容為:必須是0-9之間的數字,且studentname必須為小寫

輸出

上述的輸出為−

12===disha

上述的有效網址為−

http://localhost:8000/student/12/disha
http://localhost:8000/student/01/disha

無效網址 -

http://localhost:8000/student/01/DISHA
http://localhost:8000/student/abcd/disha

使用 whereNumber()

範例

您需要傳遞您希望僅為有效值的路由參數 -

Route::get('/student/{studentid}/{studentname}', function ($studentid, $studentname) {
   return $studentid."===".$studentname;
})->whereNumber('studentid')->where('studentname','[a-z]+');

輸出

上述程式碼的輸出為 −

12===disha

使用 whereAlpha()

範例

您需要傳遞您希望具有 alpha 值的路由參數 -

Route::get('/student/{studentid}/{studentname}', function ($studentid, $studentname) {
   return $studentid."===".$studentname;
})->whereNumber('studentid')->whereAlpha('studentname');

輸出

上述程式碼的輸出為 −

12===dishaSingh

使用 whereAlphaNumeric()

範例

您需要傳遞您希望具有字母數字值的路由參數−

Route::get('/student/{studentid}/{studentname}', function ($studentid, $studentname) {
   return $studentid."===".$studentname;
})->whereNumber('studentid')->whereAlphaNumeric ('studentname');

輸出

輸出將會是 -

12===dishaSingh122

以上是如何在Laravel中驗證路由參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文轉載於:tutorialspoint。如有侵權,請聯絡admin@php.cn刪除
可以在PHP會話中存儲哪些數據?可以在PHP會話中存儲哪些數據?May 02, 2025 am 12:17 AM

phpsessionscanStorestrings,數字,數組和原始物。

您如何開始PHP會話?您如何開始PHP會話?May 02, 2025 am 12:16 AM

tostartaphpsession,usesesses_start()attheScript'Sbeginning.1)placeitbeforeanyOutputtosetThesessionCookie.2)useSessionsforuserDatalikeloginstatusorshoppingcarts.3)regenerateSessiveIdStopreventFentfixationAttacks.s.4)考慮使用AttActAcks.s.s.4)

什麼是會話再生,如何提高安全性?什麼是會話再生,如何提高安全性?May 02, 2025 am 12:15 AM

會話再生是指在用戶進行敏感操作時生成新會話ID並使舊ID失效,以防會話固定攻擊。實現步驟包括:1.檢測敏感操作,2.生成新會話ID,3.銷毀舊會話ID,4.更新用戶端會話信息。

使用PHP會話時有哪些性能考慮?使用PHP會話時有哪些性能考慮?May 02, 2025 am 12:11 AM

PHP会话对应用性能有显著影响。优化方法包括:1.使用数据库存储会话数据,提升响应速度;2.减少会话数据使用,只存储必要信息;3.采用非阻塞会话处理器,提高并发能力;4.调整会话过期时间,平衡用户体验和服务器负担;5.使用持久会话,减少数据读写次数。

PHP會話與Cookie有何不同?PHP會話與Cookie有何不同?May 02, 2025 am 12:03 AM

PHPsessionsareserver-side,whilecookiesareclient-side.1)Sessionsstoredataontheserver,aremoresecure,andhandlelargerdata.2)Cookiesstoredataontheclient,arelesssecure,andlimitedinsize.Usesessionsforsensitivedataandcookiesfornon-sensitive,client-sidedata.

PHP如何識別用戶的會話?PHP如何識別用戶的會話?May 01, 2025 am 12:23 AM

phpIdentifiesauser'ssessionSessionSessionCookiesAndSessionId.1)whiwsession_start()被稱為,phpgeneratesainiquesesesessionIdStoredInacookInAcookInAcienamedInAcienamedphpsessIdontheuser'sbrowser'sbrowser.2)thisIdallowSphptpptpptpptpptpptpptpptoretoreteretrieetrieetrieetrieetrieetrieetreetrieetrieetrieetrieetremthafromtheserver。

確保PHP會議的一些最佳實踐是什麼?確保PHP會議的一些最佳實踐是什麼?May 01, 2025 am 12:22 AM

PHP會話的安全可以通過以下措施實現:1.使用session_regenerate_id()在用戶登錄或重要操作時重新生成會話ID。 2.通過HTTPS協議加密傳輸會話ID。 3.使用session_save_path()指定安全目錄存儲會話數據,並正確設置權限。

PHP會話文件默認存儲在哪裡?PHP會話文件默認存儲在哪裡?May 01, 2025 am 12:15 AM

phpsessionFilesArestoredIntheDirectorySpecifiedBysession.save_path,通常是/tmponunix-likesystemsorc:\ windows \ windows \ temponwindows.tocustomizethis:tocustomizEthis:1)useession_save_save_save_path_path()

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

SecLists

SecLists

SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。