0

我正在开发一个 SMS 应用程序。我必须调用一个链接,例如http://sendsms.com/send.php?mobile=45455&msg=hello来发送短信

所以我使用 CURL 概念来发送短信。

$ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    $options = array(
        CURLOPT_RETURNTRANSFER => true, // return web page
        CURLOPT_HEADER => false, // don't return headers
        CURLOPT_FOLLOWLOCATION => true, // follow redirects
        CURLOPT_ENCODING => "", // handle all encodings
        CURLOPT_AUTOREFERER => true, // set referer on redirect
        CURLOPT_CONNECTTIMEOUT => 15, // timeout on connect
        CURLOPT_TIMEOUT => 15, // timeout on response
        CURLOPT_MAXREDIRS => 10, // stop after 10 redirects
    );

    curl_setopt_array($ch, $options);
    $content = curl_exec($ch);
    $err = curl_errno($ch);
    $errmsg = curl_error($ch);
    $header = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);

    $output ="Error:".$err." ErrMsg:".$errmsg." Header:".  json_encode($header);

问题是消息未发送。我检查了 SMS API 服务器。而且也没有收到请求。所以唯一的问题是 CURL 可能不会调用服务器。我试图打印错误消息,我得到了curl_errno($ch) is 0

请给我最好的方法来做到这一点

4

1 回答 1

0

尝试通过 POST 发送请求:

curl_setopt($ch, CURLOPT_POST      ,1);
于 2013-04-11T08:08:08.050 回答