用php模拟post请求,轻松调用接口

摘要

模拟post请求,插上插口,让数据飞向目标。若无url或参数,请求失败,心情沮丧。

正文

php仿真模拟post递交要求,启用插口

/**
 * 仿真模拟post开展url要求
 * @param string $url
 * @param string $param
 */
 function request_post($url = '', $param = '') {
 if (empty($url) || empty($param)) {
  return false;
 }
 
 $postUrl = $url;
 $curlPost = $param;
 $ch = curl_init();//复位curl
 curl_setopt($ch, CURLOPT_URL,$postUrl);//爬取特定网页页面
 curl_setopt($ch, CURLOPT_HEADER, 0);//设定header
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//规定結果为字符串数组且輸出到显示屏上
 curl_setopt($ch, CURLOPT_POST, 1);//post递交方法
 curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
 $data = curl_exec($ch);//运作curl
 curl_close($ch);
 
 return $data;
 }

它是方式,

下边是实际的启用实例。

function testAction(){
 $url = 'http://mobile.jschina.com.cn/jschina/register.php';
 $post_data['appid'] = '10';
 $post_data['appkey'] = 'cmbohpffXVR03nIpkkQXaAA1Vf5nO4nQ';
 $post_data['member_name'] = 'zsjs123';
 $post_data['password'] = '123456';
 $post_data['email'] = 'zsjs123@126.com';
 $o = "";
 foreach ( $post_data as $k => $v ) 
 { 
  $o.= "$k=" . urlencode( $v ). "&" ;
 }
 $post_data = substr($o,0,-1);

 $res = $this->request_post($url, $post_data); 
 print_r($res);

 }

那样就递交要求,而且获得要求結果了。一般回到的結果是json文件格式的。

这儿的post是拼凑出去的。

还可以更新改造成下边的方法。

/**
 * 仿真模拟post开展url要求
 * @param string $url
 * @param array $post_data
 */
 function request_post($url = '', $post_data = array()) {
 if (empty($url) || empty($post_data)) {
  return false;
 }
 
 $o = "";
 foreach ( $post_data as $k => $v ) 
 { 
  $o.= "$k=" . urlencode( $v ). "&" ;
 }
 $post_data = substr($o,0,-1);

 $postUrl = $url;
 $curlPost = $post_data;
 $ch = curl_init();//复位curl
 curl_setopt($ch, CURLOPT_URL,$postUrl);//爬取特定网页页面
 curl_setopt($ch, CURLOPT_HEADER, 0);//设定header
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//规定結果为字符串数组且輸出到显示屏上
 curl_setopt($ch, CURLOPT_POST, 1);//post递交方法
 curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost);
 $data = curl_exec($ch);//运作curl
 curl_close($ch);
 
 return $data;
 }

将拼凑也封裝了起來,那样启用的情况下就更简约了。

function testAction(){
 $url = 'http://mobile.jschina.com.cn/jschina/register.php';
 $post_data['appid'] = '10';
 $post_data['appkey'] = 'cmbohpffXVR03nIpkkQXaAA1Vf5nO4nQ';
 $post_data['member_name'] = 'zsjs124';
 $post_data['password'] = '123456';
 $post_data['email'] = 'zsjs124@126.com';
 //$post_data = array();
 $res = $this->request_post($url, $post_data); 
 print_r($res);

 }

到此这篇有关php仿真模拟post递交要求启用插口实例分析的文章内容就详细介绍到这了

关注不迷路

扫码下方二维码,关注宇凡盒子公众号,免费获取最新技术内幕!

温馨提示:如果您访问和下载本站资源,表示您已同意只将下载文件用于研究、学习而非其他用途。
文章版权声明 1、本网站名称:宇凡盒子
2、本站文章未经许可,禁止转载!
3、如果文章内容介绍中无特别注明,本网站压缩包解压需要密码统一是:yufanbox.com
4、本站仅供资源信息交流学习,不保证资源的可用及完整性,不提供安装使用及技术服务。点此了解
5、如果您发现本站分享的资源侵犯了您的权益,请及时通知我们,我们会在接到通知后及时处理!提交入口
0

评论0

请先

站点公告

🚀 【宇凡盒子】全网资源库转储中心

👉 注册即送VIP权限👈

👻 全站资源免费下载✅,欢迎注册!

记得 【收藏】+【关注】 谢谢!~~~

立即注册
没有账号?注册  忘记密码?

社交账号快速登录