欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > php >内容正文

php

php中curl模拟post提交多维数组

发布时间:2025/7/14 php 55 豆豆
生活随笔 收集整理的这篇文章主要介绍了 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

代码如下:

<?php$param = array('uid' => 123, 'uids' => array(12,455), 'msgType' => 'WITH', 'nick' => 'aaa', );$url = "http://cx.com/t.php";//通过curl的post方式发送接口请求SendDataByCurl($url,$param);//通过curl模拟post的请求; function SendDataByCurl($url,$data=array()){//对空格进行转义$url = str_replace(' ','+',$url);$ch = curl_init();//设置选项,包括URLcurl_setopt($ch, CURLOPT_URL, "$url");curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_HEADER, 0);curl_setopt($ch,CURLOPT_TIMEOUT,3); //定义超时3秒钟 // POST数据curl_setopt($ch, CURLOPT_POST, 1);// 把post的变量加上curl_setopt($ch, CURLOPT_POSTFIELDS, $data);//执行并获取url地址的内容$output = curl_exec($ch);//释放curl句柄curl_close($ch);return $output;}

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

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

 

总结

以上是生活随笔为你收集整理的php中curl模拟post提交多维数组的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。