-5

请求格式: http ://site.com/VSServices/SendSms.ashx?login=CLIENT_LOGIN&pass=CLIENT_PASSWORD&from=Paulx&to=442081368002&&text=Hello

响应是 xml

4

1 回答 1

0

根据您的帖子,我的理解是您想要 php 中 curl 示例的代码。下面的代码将使用 curl 发出 HTTP 请求并在 $content 中返回响应。

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL,'http://www.anydomain.com/anyapi.php?a=parameters');
$content = curl_exec($ch);
echo $content;
?>

希望这将有助于为您的问题提供更多信息,以便我可以帮助您。

于 2013-08-22T08:06:32.587 回答