内容简介:PHP发送GET/POST请求的方法、PHP调用API代码、可以使用curl方法、file_get_content方法实现post请求数据提交
PHP发送GET/POST请求的方法、 PHP 调用API代码、可以使用curl方法、file_get_content方法实现post请求数据提交
curl(需要curl扩展)
public function api1()
{
$url = "https://api.com";
$body = array(
'username' => 'vienblog',
'link' => 'vienblog.com',
'title' => '免费开源博客'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
return $result;
}
file_get_content
public function api2()
{
$url = "https://api.com";
$data = array(
'username' => 'vienblog',
'link' => 'vienblog.com',
'title' => '免费开源博客'
);
$postdata = http_build_query($data);
$opts = array('http' =>
array('method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata));
$context = stream_context_create($opts);
$result = file_get_contents($url, false, $context);
return $result;
}
欢迎小伙伴们在下方评论区留言 ~ O(∩_∩)O
文章对我有帮助, 点此请博主吃包辣条
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 使用 SpringAOP 获取一次请求流经方法的调用次数和调用耗时
- 使用 SpringAOP 获取一次请求流经方法的调用次数和调用耗时
- C语言实现GET请求调用API
- 为何一次请求会有两次HttpServlet:service调用?
- 直观讲解-RPC调用和HTTP调用的区别
- 调用链系列一:解读UAVStack中的调用链技术
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
One Click
Richard L. Brandt / Portfolio Hardcover / 2011-10-27 / 25.95
An insightful look at how Amazon really works and how its founder and CEO makes it happen. Amazon's business model is deceptively simple: make online shopping so easy and convenient that customers ......一起来看看 《One Click》 这本书的介绍吧!