'HttpEnd' => [\app\listener\http\HttpEndListener::class], //HTTP请求结束回调事件
微信支付回调在这里报错了,报错原因:Cannot use object of type Symfony\Component\HttpFoundation\Response as array
我Log::error打印 $response->getData()格式如下:
我想取 statusCode的值怎么取啊,我用了
json_decode($response->getData(),true); 返回 空
json_decode($response->getData()); 返回 空
json_encode($response->getData()); 返回 {"headers":{}}
$response->getData()->statusCode; 返回报错
请原谅我学艺不精,但是我不想再这看到报错了,这个 statusCode取值,php怎么写法?