How to set custom request header keys with curl and PHP?

后端 未结 2 549
南方客
南方客 2021-02-18 18:33

I\'m using curl and php to upload file. I need help to set a custom request header keys like

X-Filename  blahblah.zip
X-Filesize  2677
X-Filetype  application/z         


        
2条回答
  •  盖世英雄少女心
    2021-02-18 19:24

    curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-Filename: blahblah.zip', 'X-Filesize: 2677', 'X-Filetype: application/zip'));
    

提交回复
热议问题