如何使用curl返回数据

时间:2014-04-17 19:05:26

标签: php curl

我是接受cURL的新手,所以我不确定这里出了什么问题。这是我的代码。

test.php的

$curlURL= "http://geo.domain.com/index.php";

$postFields = array(
    'auth' => 'justanauthkey',
    'ip' => '184.71.16.158'
);

$ch = curl_init($curlURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL,$curlURL);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postFields);
$result = curl_exec($ch);
curl_close($ch);

//$resarray = json_decode($result, true);
echo $result;

index.php收到$ _POST

if(!empty($_POST)){
    print_r($_POST);
}

我不确定在index.php文件中该做什么我回显或print_r数组以便curl请求文件进行处理。

0 个答案:

没有答案