up vote 5 down vote favorite
2
share [g+] share [fb]

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?

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

I can't seem to find any relevant info on curl_setopt urlencoding of Array values (if an Array is passed).

However if you're using PHP5, you can use the http_build_query function which automatically returns a query string representation of the Array (encoded and all).

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

EDIT Looking at the C implementation of curl_setopt here at line 847, there doesn't seem to be any urlencoding, just simple string conversion.

link|improve this answer
It only says anything about the urlencoded part if your passing a string of data, nothing about if you need to preencode an array. – Uberfuzzy Feb 22 '09 at 3:23
feedback

You don't have to urlencode first. However, it is important to realize that passing an array will make cURL send it as multipart/form-data, which explains why it is does not need to get urlencoded (by neither you nor cURL), and you need to use an array if you want to upload files. If you http_build_query() first (and send it as a string) it will be treated as application/x-www-form-urlencoded.

link|improve this answer
Where did you read about urlencoding for arrays? – Luca Matteis Feb 22 '09 at 4:12
It does not urlencode them, there is no need to since it is getting sent as multipart form. – Patrick Daryll Glandien Feb 22 '09 at 4:14
I know that, but the spec doesn't say anything about generating an multipart/form-data if an Array is passed. – Luca Matteis Feb 22 '09 at 4:16
1  
That's right, the documentation is slacky. I had to figure it out by myself by sniffing the packets and I think it's also somewhere in the comments (@the PHP doc). Since you have to pass an array if you want to upload files, multipart is the only way anyway. – Patrick Daryll Glandien Feb 22 '09 at 4:20
ok I guess I'll trust you since I can't test this. +1 – Luca Matteis Feb 22 '09 at 4:21
show 1 more comment
feedback

POST data is not added to the URL (like GET) so you don't need to URLencode it.

link|improve this answer
2  
wrong, if passed as a string to the curl_setopt function, it needs to be encoded. – Luca Matteis Feb 22 '09 at 4:18
feedback

One problem with using an array for CURLOPT_POSTFIELDS is that you can't have a name-value pair with an empty value.

link|improve this answer
Really? You can't? Where have you read this? – Alix Axel Nov 3 '09 at 20:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.