使用phpcurl模拟post请求的小例子。
程序员文章站
2022-06-01 23:38:35
...
1,本地机器: ?php$uri = "http://www.jbxue.com/test.php";//这里换成自己的服务器的地址// 参数数组$data = array ('name' = 'tanteng' // 'passWord' = 'password');$ch = curl_init ();// PRint_r($ch);curl_setopt ( $ch, CURLOPT_URL, $uri );curl_se
1,本地机器:
'tanteng' // 'passWord' => 'password' ); $ch = curl_init (); // PRint_r($ch); curl_setopt ( $ch, CURLOPT_URL, $uri ); curl_setopt ( $ch, CURLOPT_POST, 1 ); curl_setopt ( $ch, CURLOPT_HEADER, 0 ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data ); $return = curl_exec ( $ch ); curl_close ( $ch ); print_r($return);
2,远程服务器:
上一篇: java学习随笔---捣蛋vector
下一篇: 服务器迁移,php版本不同可能导致的问题
推荐阅读
-
postman的安装与使用方法(模拟Get和Post请求)
-
python利用requests库模拟post请求时json的使用
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
python利用requests库模拟post请求时json的使用教程
-
python利用requests库模拟post请求时json的使用
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
使用phpcurl模拟post请求的小例子。
-
Node.js使用superagent模拟GET/POST的请求
-
使用php curl模拟post请求的小例子。,curlpost
-
使用php curl模拟post请求的小例子。,curlpost_PHP教程