drqn5418 2017-11-30 14:47
浏览 75
已采纳

为什么curl_exec()在我的Web服务中返回响应?

Why curl_exec() is returning an array in my web service?

I created a web service to send push notifications with Firebase. Everthing works perfectly well except that the result of notification is coming with the server response, even if I didn't ask it.

public function send_notification($recipient_id,$recipient_type,$request_status)
{
    $url = "https://fcm.googleapis.com/fcm/send";
    $token = $user_device_token;
    $notification = array(
        'title' => $title,
        'text' => $body,
        'sound' => 'default',
        'badge' => '1'
    );
    $arrayToSend = array(
        'to' => $token,
        'notification' => $notification,
        'priority' => 'high'
    );

    $json = json_encode($arrayToSend);
    $headers = array();
    $headers[] = 'Content-Type: application/json';
    $headers[] = 'Authorization: key=' . $server_key;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

    //Send the request
    error_reporting(E_ERROR);
    $response_notification = curl_exec($ch);
    if ($response_notification === FALSE) {
        die('FCM Send Error: ' . curl_error($ch));
    }
    curl_close($ch);

    return $response_notification;

}

Here is how I call the send_notification() function:

$this->send_notification($request->provider_id,'provider',0);

Then I print a success message for the client side part of the webapp:

$response_array = array(
    'success' => true,
    'request_id' => $requests->id,
    'current_provider' => $request->provider_id,
    'address' => $requests->s_address,
    'latitude' => $requests->s_latitude,
    'longitude' => $requests->s_longitude,
);
$response = response()->json($response_array, 200);
return $response; 

Even if I didn't ask, there is the notification response generated when calling curl_exec($ch), attached to the response.

enter image description here

The first line is the one I don't want and I am not expecting.

  • 写回答

1条回答 默认 最新

  • doupu5941 2017-11-30 14:49
    关注

    The default behaviour of curl_exec is to print the response directly to stdout. If you want to just access the response as a variable instead, you need to set an additional option:

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料