首页 > 开发 > PHP > 正文

php curl模拟post请求和提交多维数组的示例代码

2024-05-04 23:40:29
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php curl模拟post请求和提交多维数组的示例代码,需要的朋友可以参考下

下面一段代码给大家介绍php curl模拟post请求的示例代码,具体代码如下:

 

 
  1. <?php 
  2. $uri = "http://www.cnblogs.com/test.php";//这里换成自己的服务器的地址 
  3. // 参数数组 
  4. $data = array ( 
  5. 'name' => 'tanteng' 
  6. // 'password' => 'password' 
  7. ); 
  8. $ch = curl_init (); 
  9. // print_r($ch); 
  10. curl_setopt ( $ch, CURLOPT_URL, $uri ); 
  11. curl_setopt ( $ch, CURLOPT_POST, 1 ); 
  12. curl_setopt ( $ch, CURLOPT_HEADER, 0 ); 
  13. curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 ); 
  14. curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data ); 
  15. $return = curl_exec ( $ch ); 
  16. curl_close ( $ch ); 
  17. print_r($return); 

2,远程服务器:

 

 
  1. <?php 
  2. if(isset($_POST['name'])){ 
  3. if(!empty($_POST['name'])){ 
  4. echo '您好,',$_POST['name'].'!'

下面给大家介绍php中curl模拟post提交多维数组。

今天需要用curl模拟post提交参数,请求同事提供的一个接口;但是传递的参数中,有一个参数的值为数组,用普通的curl post代码提交,会报错误

PHP Notice: Array to string conversion in /test/functions.php on line 30

Notice: Array to string conversion in /test/functions.php on line 30

代码如下:

 

 
  1. <?php 
  2. $param = array( 
  3. 'uid' => 123,  
  4. 'uids' => array(12,455),  
  5. 'msgType' => 'WITH',  
  6. 'nick' => 'aaa',  
  7. ); 
  8. $url = "http://cx.com/t.php"
  9. //通过curl的post方式发送接口请求 
  10. SendDataByCurl($url,$param); 
  11. //通过curl模拟post的请求; 
  12. function SendDataByCurl($url,$data=array()){ 
  13. //对空格进行转义 
  14. $url = str_replace(' ','+',$url); 
  15. $ch = curl_init(); 
  16. //设置选项,包括URL 
  17. curl_setopt($ch, CURLOPT_URL, "$url"); 
  18. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  19. curl_setopt($ch, CURLOPT_HEADER, 0); 
  20. curl_setopt($ch,CURLOPT_TIMEOUT,3); //定义超时3秒钟  
  21. // POST数据 
  22. curl_setopt($ch, CURLOPT_POST, 1); 
  23. // 把post的变量加上 
  24. curl_setopt($ch, CURLOPT_POSTFIELDS, $data); 
  25. //执行并获取url地址的内容 
  26. $output = curl_exec($ch); 
  27. //释放curl句柄 
  28. curl_close($ch); 
  29. return $output; 

经过修改上面代码,可以完成提交数组的功能,而不会报php notice,代码如下:

 

 
  1. //通过curl模拟post的请求; 
  2. function SendDataByCurl($url,$data=array()){ 
  3. //对空格进行转义 
  4. $url = str_replace(' ','+',$url); 
  5. $ch = curl_init(); 
  6. //设置选项,包括URL 
  7. curl_setopt($ch, CURLOPT_URL, "$url"); 
  8. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  9. curl_setopt($ch, CURLOPT_HEADER, 0); 
  10. curl_setopt($ch,CURLOPT_TIMEOUT,3); //定义超时3秒钟  
  11. // POST数据 
  12. curl_setopt($ch, CURLOPT_POST, 1); 
  13. // 把post的变量加上 
  14. curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); //所需传的数组用http_bulid_query()函数处理一下,就ok了 
  15. //执行并获取url地址的内容 
  16. $output = curl_exec($ch); 
  17. $errorCode = curl_errno($ch); 
  18. //释放curl句柄 
  19. curl_close($ch); 
  20. if(0 !== $errorCode) { 
  21. return false
  22. return $output; 


注:相关教程知识阅读请移步到PHP教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表