1

我正在尝试从网站发送批量短信..所以我使用 api..我已经$sendString为使用 api..的确切 url 创建了变量。但由于某种原因,cURL 函数不适用于这个特定的 URL ...

我尝试使用这个 api 的另一个函数来检查我的信用余额并且它有效......我什至尝试将$sendString变量手动粘贴到链接框中并且它有效!所以我知道 cURL 和 api 都在工作,但不是为了从网站发送我的文本......有什么想法吗?

//Create a new cURL resource
$ch = curl_init();

//Set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "$sendString");
curl_setopt($ch, CURLOPT_HEADER, 0);

//Grab URL and pass it to the browser
curl_exec($ch);

//Close cURL resource, and free up system resources
curl_close($ch);
4

1 回答 1

1

使用curl_setopt_array()解析所有 url 字符串
像这样:

$curl_handle = curl_init();
$options = array
(
    CURLOPT_URL=>$url,
    CURLOPT_HEADER=>true,
    CURLOPT_RETURNTRANSFER=>true,
    CURLOPT_FOLLOWLOCATION=>true,
    CURLOPT_USERAGENT=>$browser_id
);
curl_setopt_array($curl_handle,$options);
$server_output = curl_exec($curl_handle);
curl_close($curl_handle);

var_dump($server_output)
于 2012-10-22T04:17:06.410 回答