使用php curl发送和获取数据

时间:2017-04-11 17:17:45

标签: php curl post

我尝试使用此代码发送数据(在页面中名为send.php)

$data = array("name" => "Reda", "age" => "36");  
$post = http_build_query($data);                                                                  


$ch = curl_init('http://127.0.0.1/testcurl.php');                                                                      

curl_setopt($ch, CURLOPT_POST, true); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);                                                                  

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                                                             

$response = curl_exec($ch);
curl_close($ch);
var_dump($response);

并使用此代码(在名为testcurl.php的页面中)获取它:

if (isset($_POST['name'])) {

print_r($_POST['name']);

}

但我什么也没得到,或像这个数组一样空数组() 请任何人帮助我

0 个答案:

没有答案