PHP下使用CURL方式POST数据至API接口的代码
程序员文章站
2022-05-31 19:32:08
...
其实,也比较简单,上代码:
<?php $url = 'http://127.0.0.1/test.php';//POST指向的链接 $data = array( 'access_token'=>'thekeyvalue' ); $json_data = postData($url, $data); $array = json_decode($json_data,true); echo '<pre>';print_r($array); function postData($url, $data) { $ch = curl_init(); $timeout = 300; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_REFERER, "http://www.jb51.net/"); //构造来路 curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $handles = curl_exec($ch); curl_close($ch); return $handles; } ?>
更多PHP下使用CURL方式POST数据至API接口的代码相关文章请关注PHP中文网!
上一篇: PHP获取POST数据的几种方法汇总
下一篇: PHP实现的方程求解示例分析
推荐阅读
-
PHP下使用CURL方式POST数据至API接口的代码_PHP
-
PHP下使用CURL方式POST数据至API接口的代码
-
PHP下使用CURL方式POST数据至API接口的代码
-
PHP下使用CURL方式POST数据至API接口的代码_php技巧
-
PHP下使用CURL方式POST数据至API接口的代码_PHP
-
PHP下使用CURL方式POST数据至API接口的代码
-
PHP下使用CURL方式POST数据至API接口的代码
-
PHP下使用CURL方式POST数据至API接口的代码_php技巧
-
PHP下使用CURL方式POST数据至API接口的代码
-
PHP下使用CURL方式POST数据至API接口的代码_PHP教程