0

这是我的一点 php,试图弄清楚为什么我没有$result访问它产生的 URL,这将给我一个基于 get 或 post 的有效 JSON 结果。所以我认为我的问题是我如何使用 cURL。所以我需要有人来处理这个。

        //open connection
        $ch = curl_init();
        //set the url, number of POST vars, POST data
        curl_setopt($ch,CURLOPT_URL,$url);
        curl_setopt($ch,CURLOPT_POST,count($params));
        curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
        curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
        //execute post
        $result = curl_exec($ch);           
                    if(!$result)
                    {
                        $error = curl_error($ch); echo $error; return false;
                    }
        //close connection
        curl_close($ch);

        //return json_decode($result);
                    echo $result;

上面的编辑代码来自原始帖子

$error不报告任何内容。我将返回 json... 更改为 echo 以查看它是否在执行任何操作,并打印出 ' Disallowed Key Characters. ' 屏幕上。

编辑 2

$url = http://domain.com/search
$params = array('q'=>'search,term')

$params被放入一个 foreach 循环,该循环构建$fields_string

$fields_string = '?';
foreach($params as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
$fields_string = substr($fields_string,0,-1);

fields_string 最终看起来像?ll=37.2790669,-121.874722&range=10(对于我目前正在做的事情,我可以传递 1-12 个可选参数,这就是为什么我要按我的方式构建它的原因。

4

2 回答 2

1

尝试添加错误检查以确保curl_exec成功执行并在服务器上获取有意义的错误消息。

就像是:

    $ch = curl_init();
    //Make string url safe with urlencode
    curl_setopt($ch,CURLOPT_URL,urlencode($url));
    curl_setopt($ch,CURLOPT_POST,count($params));
    curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
    $result = curl_exec($ch);
    if(!$result) {
        $error = curl_error();
        //$error now contains the error thrown when curl_exec failed to execute
        //echo this to terminal or to an error box in the browser?
    }
    curl_close($ch);

    return json_decode($result);

如果您仍然需要帮助,请在此处发布您产生的错误。此外,这里是我利用的两个功能的手册页:

http://www.php.net/manual/en/function.curl-error.php

http://www.php.net/manual/en/function.curl-exec.php

http://php.net/manual/en/function.urlencode.php

-干杯

于 2012-07-11T03:57:44.550 回答
1
//set POST variables
$url = "http://example.com/edsym/registration.php"; // URL to calc.cgi
$fields = array(
'namee'=>urlencode($name),
'city'=>urlencode($city),
'phh'=>urlencode($ph),
'emaill'=>urlencode($email),
'msg1'=>urlencode("Message type")
                );
$fields_string=" ";
//url-ify the data for the POST
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
rtrim($fields_string,'&');

//open connection
$ch = curl_init();

//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);

//execute post
$result = curl_exec($ch);

//close connection
curl_close($ch);

我正在使用 curl 来发布这样的帖子及其工作

于 2012-07-11T05:17:17.740 回答