Curl sends JSON-formatted data

Source: Internet
Author: User

PHP's Curl method is described in detail in the official manual.

curl_setopt Usage: http://www.php.net/manual/en/function.curl-setopt.php

  

<?PHP$params=Array(    ' Par1 ' = ' a ', ' par2 ' + 11,);$header=Array("Content-type:application/json");//Note Header, format k:v$arrParams= Json_encode ($params);$ch=curl_init (); curl_setopt ($ch, Curlopt_post,true); curl_setopt ($ch, Curlopt_postfields,$arrParams); curl_setopt ($ch, Curlopt_httpheader,$header); curl_setopt ($ch, Curlopt_returntransfer,true); curl_setopt ($ch, Curlopt_timeout,$timeout);//the time-out for the Curl function to execute (including connection to return end) units of secondscurl_setopt ($ch, Curlopt_connecttimeout,$timeout);//the length of time in seconds to connect the unitcurl_setopt ($ch, Curlopt_url,$url);$ret= Curl_exec ($ch);$http _status= Curl_getinfo ($ch, Curlinfo_http_code);//The other server returns HTTP codeCurl_close ($ch);//deal $ret

It is worth noting that the Json_encode ()

In dealing with the Chinese problem, you can control whether the conversion to Unicode format, constant JSON_UNESCAPED_UNICODE这个控制 . See http://php.net/manual/zh/function.json-encode.php for details.

Curl sends JSON-formatted data

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.