laravel回调URL与file_get_contents('php:// input')

时间:2018-07-13 07:40:34

标签: php laravel

在香草php中,我将只用

创建一个callbak网址
 try
      {
     //response content type application/json
          header("Content-Type:application/json");
            //read incoming request
          $postData = file_get_contents('php://input');
        .......
        ......

但是在laravel中,我尚未获得有关如何实现相同目标的清晰解释

我尝试使用

 $postData = Request::getContent();

但返回空白

1 个答案:

答案 0 :(得分:0)

如果您需要请求中的数据,请使用(new \Illuminate\Http\Request())->all()或使用DI

public function someAction(\Illuminate\Http\Request $request)
{
   dd($request->all());
}