码迷,mamicode.com
首页 > Web开发 > 详细

PHP curl传 json字符串

时间:2014-07-30 00:50:32      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   div   ar   

     $ch = curl_init();
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
        curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );
         curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, false );
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            ‘Content-Type: application/json; charset=utf-8‘,
            ‘Content-Length: ‘.strlen($data))
     );

服务端获取:

   $GLOBALS[‘HTTP_RAW_POST_DATA‘]

PHP curl传 json字符串,布布扣,bubuko.com

PHP curl传 json字符串

标签:style   blog   http   color   os   io   div   ar   

原文地址:http://www.cnblogs.com/glory-jzx/p/3876747.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!