我怎樣才能得到?來自url的查詢? input :: all不起作用。Laravel 3查詢字符串
我的路線:
Route::get('category/(:any?)','[email protected]');
我想要得到的是這樣的:
http://url.com/category/examplecategory?list_as=grid&price_range=2
prinr_r輸入的所有::()。爲什麼我不能有list_as =>電網和PRICE_RANGE => 2
Array ([category/examplecategory] =>)
我的輸出應該是:
Array ([list_as] => "grid" , [price_range] => 2 [another_filter] => "another value"....)
難道我不能直接使用我的路由並獲取查詢開頭嗎?因爲它不僅限於listas和pricerange。有很多過濾器。 –
是的你可以,你可以使用$ data = Input :: all(); –