Multipart form file upload POST PHP cURL

前端 未结 4 553
慢半拍i
慢半拍i 2021-01-15 02:30

I am wanting to send a file via http POST using PHP and cURL.

The form POST was working ok with basic fields besides the file being posted with \'application/json\'.

4条回答
  •  囚心锁ツ
    2021-01-15 03:07

    You need to build query string for data to be posted. Use http_build_query

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
    

提交回复
热议问题