php通过http post发送json数据
程序员文章站
2022-06-09 13:53:44
...
通过http post发送json数据
function http_post_data($url, $data_string) { $ch = curl_init(); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json; charset=utf-8', 'Content-Length: ' . strlen($data_string)) ); ob_start(); curl_exec($ch); $return_content = ob_get_contents(); ob_end_clean(); $return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); return array($return_code, $return_content); } $url = "http://xx.xx.cn"; $data = json_encode(array('a'=>1, 'b'=>2)); list($return_code, $return_content) = http_post_data($url, $data);
上一篇: 利用云视频实现在线教育和主播系统
推荐阅读
-
php接收android发送的json数据?解决思路
-
客户端socket发送http POST请求可以触发服务端PHP页面的isset吗?解决思路
-
PHP处理来自Python的Post的json数据
-
dragon boat festival php实现post接口 接收android客户端json数据 存储数据库 并返回json
-
php和js如何通过json互相传递数据相关问题探讨
-
PHP:POST发送JSON字符串
-
用浏览器发送post返回数据正常 用php curl返回的是乱码
-
php 利用socket发送HTTP请求(GET,POST),socketget_PHP教程
-
PHP利用socket模拟post之fsockopen发送数据_PHP教程
-
如何POST一个JSON格式的数据给Restful服务,jsonrestful_PHP教程