博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php curl 跨域请求例子
阅读量:6714 次
发布时间:2019-06-25

本文共 962 字,大约阅读时间需要 3 分钟。

php curl 跨域请求例子

public function getresapi($url){	 $ch = curl_init();	 curl_setopt($ch, CURLOPT_URL, $url);	 curl_setopt($ch, CURLOPT_HEADER, false);	 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);	 $result=curl_exec($ch);	 curl_close($ch);	 return($result);}$url = 'http://xxxx.com/index.php?r=api/xxx&from='.$starttime.'&to='.$endtime.'&url='.$url;$result = $getresapi($url);

例子二

curl.php

11,"cyid"=>22,"startday"=>33,"endday"=>44,"page"=>55,"limit"=>66);$url = 'http://test.xxx.com/curl_dome.php';//请求的url地址$ch = curl_init();curl_setopt($ch, CURLOPT_POST, true);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_POSTFIELDS, $arrPostInfo);$response = curl_exec($ch);curl_close($ch);$result = json_decode($response,true);var_dump($result);

curl_dome.php

11,"cyid"=>22,"startday"=>33,"endday"=>44,"page"=>55,"limit"=>66);echo json_encode($arrPostInfo);

转载于:https://my.oschina.net/tongjh/blog/186906

你可能感兴趣的文章
python各种模块,迭代器,生成器
查看>>
微信小程序 watch监听数据变化 类似vue中的watch
查看>>
u检验、t检验、F检验、X2检验 (转)
查看>>
不可不知的Python模块: collections
查看>>
PAT 1066. Root of AVL Tree (25)
查看>>
hdu1052
查看>>
服务器端推送技术
查看>>
python开发工具
查看>>
Home Assistant系列 -- 自动语音播报天气
查看>>
Hyberledger-Fabric 1.00 RPC学习(1)
查看>>
SDNU 1450.报时助手
查看>>
BZOJ 4144 Dijkstra+Kruskal+倍增LCA
查看>>
阻塞与非阻塞,同步与异步
查看>>
HTML段落自动换行的样式设置
查看>>
Android实现左右滑动指引效果
查看>>
html里frame导航框架实现方法
查看>>
shell编程系列5--数学运算
查看>>
在 UWP 应用中创建、使用、调试 App Service (应用服务)
查看>>
Active MQ C#实现
查看>>
C#实现秒表程序
查看>>