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/zip
curlphp
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/zip
Best Solution
You must use the
curl_setopt()
function, and itsCURLOPT_HTTPHEADER
option (quoting) :Basically, in your case, you'd have something like this :