How to send array with CURL? Should I `urlencode` it?

前端 未结 5 1596
攒了一身酷
攒了一身酷 2021-01-03 23:12

When I assign an array of data to be POSTed as a cURL option (via CURLOPT_POSTFIELDS), do I need to urlencode that data first or will that be taken care of?

5条回答
  •  情话喂你
    2021-01-04 00:00

    I use:

    curl_setopt($curl , CURLOPT_POSTFIELDS, $array );
    

    instead of:

    curl_setopt($curl , CURLOPT_POSTFIELDS, http_build_query($array)  );
    

提交回复
热议问题