PHP下使用CURL方式POST数据至API接口的代码
程序员文章站
2022-05-27 19:33:27
其实,也比较简单,上代码:复制代码 代码如下:
<?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, "//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
$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, "//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下使用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教程
-
PHP下使用CURL方式POST数据至API接口的代码_PHP教程
-
php使用CURL模拟GET与POST向微信接口提交及获取数据的方法