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?
|
|
I can't seem to find any relevant info on 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).
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. |
|||
|
|
|
You don't have to urlencode first. However, it is important to realize that passing an array will make cURL send it as |
||||||||||
|
|
|
POST data is not added to the URL (like GET) so you don't need to URLencode it. |
||||
|
|
|
One problem with using an array for CURLOPT_POSTFIELDS is that you can't have a name-value pair with an empty value. |
||
|
