Access query string values from Laravel

后端 未结 4 641
悲哀的现实
悲哀的现实 2020-11-30 08:34

Does anyone know if it\'s possible to make use of URL query\'s within Laravel.

Example

I have the following route:

Route::ge         


        
4条回答
  •  一个人的身影
    2020-11-30 09:17

    Yes, it is possible. Try this:

    Route::get('test', function(){
        return "

    " . Input::get("color") . "

    "; });

    and call it by going to http://example.com/test?color=red.

    You can, of course, extend it with additional arguments to your heart's content. Try this:

    Route::get('test', function(){
        return "
    " . print_r(Input::all(), true) . "
    "; });

    and add some more arguments:

    http://example.com/?color=red&time=now&greeting=bonjour`
    

    This will give you

    Array
    (
        [color] => red
        [time] => now
        [greeting] => bonjour
    )
    

提交回复
热议问题