php curl模拟post请求小实例
程序员文章站
2022-06-15 23:26:17
本机:复制代码 代码如下:
本机:
<?php
$uri = "http://www.a.com/test.php";//这里换成你服务器的地址
// 参数数组
$data = array (
'name' => '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);
远程服务器:
<?php
if(isset($_post['name'])){
if(!empty($_post['name'])){
echo '您好,',$_post['name'].'!';
}
}
复制代码 代码如下:
<?php
$uri = "http://www.a.com/test.php";//这里换成你服务器的地址
// 参数数组
$data = array (
'name' => '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);
远程服务器:
复制代码 代码如下:
<?php
if(isset($_post['name'])){
if(!empty($_post['name'])){
echo '您好,',$_post['name'].'!';
}
}
上一篇: 结果失去很多
下一篇: php遍历文件夹所有文件子文件夹函数代码