我正在一个Laravel应用程序上工作,该应用程序使用仍用Laravel编写的后端API。我正在通过curl从前端向后端传递数据数组,数据传递得很好,但是当我尝试将其解码为PHP数组并在数组中获得单个属性时,在后端/ API上,我一直为null。我可能会错过什么?
PHP数组正在传递
$data = [
'phone' => '254712345669',
'name' => 'John Doe',
'email' => 'doejohn@email.com',
];
$token = session('access_token');
$letter = GeneralHelper::global_Curl($data , $token , 'api/v1/travel-letter');
GeneralHelper中的卷曲函数以Json格式将数据传递到后端
static function global_Curl($data, $token , $url){
$server = 'http://localhost/digital-apps-apis/public';
$headers = ["Accept:application/json",
"Content-Type:application/json",
"Authorization:Bearer ".$token
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, ($server.'/'.$url));
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
$response = json_decode(curl_exec($ch));
dd($response);
curl_close($ch);
return $response;
}
要检索数据的API端
public function getLetter(Request $request){
return $request->all();
}
从API端返回后浏览器“网络”标签上的数据
{#368
+"phone": "254712345669"
+"name": "John Doe"
+"email": "doejohn@email.com"
}
当我解码数据以便获取每个属性时,我会得到null
public function getLetter(Request $request){
return json_decode($request->all() , true);
}
答案 0 :(得分:0)
如果json_decode
返回null,则表示给定的数据不是有效的json字符串。在网络响应中,字符串以#368
开头的事实表明,这是对象转储而不是字符串。尝试再次检查。
另外,也许您知道这是调试的剩余内容,但是您在dd()
函数中有一个global_Curl