1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravel、URLのパラメータの受け渡し方【個人的なお勉強アウトプット】

Last updated at Posted at 2022-03-19

参考図書

Route::getは、アクセスする際にパラーメータを設定し値を渡すことができる。
Route::get('/hogehoge/{パラメータ}'), function($受け取る引数){hogehoge});
第一引数に設定したパスの{パラメータ}に当たる部分が取り出せるようになる。
第二引数の関数では、パラメータの値を受け取る引数を用意しておく。

例)http://hogehoge/hello/sampleにアクセス

Route::get('hello/{msg}' function($msg){
 $msgに'sample'が代入される
});

任意パラメータにはパラメータの末尾に?をつける。
任意パラメータには値が渡される仮引数にデフォルト値を指定して、引数が渡されなくても処理できるようにしておく。
Route::get('hello/{msg?},function($msg='no message.')){・・・

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?