在全新安装 L4 时:
路由.php
Route::post('/test', 'TestController@store');
测试控制器.php
class TestController extends Controller {
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store()
{
print_r(Input::get());
//
}
}
冰壶网址
curl --data "param1=value1¶m2=value2" http://example.com/test
输出:
Array
(
[param1] => value1
[param2] => value2
[/test] =>
)
请求 URI 在这里做什么?
PS:使用 Nginx / Php-fpm 堆栈应该很重要。