0

我需要帮助从网站上的表格发送短信。
我试过下面的代码没有成功。

<?php 
$username = '';
$password = '';

$from = $_POST['from'];
$to = $_POST['to'];
$message = $_POST['message'];
$text = urlencode($message);
//Send sms   
private function sendSms(){        
      $posturl='http://api.infobip.com/api/v3/sendsms/plain?user=$username&password=$password&sender=$from&SMSText=$text&GSM=$to'; 
}
?>
4

3 回答 3

0

您应该添加一些逻辑来调用实际的 $posturl。

你可以检查 cUrl,或者做一个简单的 file_get_contents($posturl);

于 2015-05-23T21:32:04.223 回答
0
<?php 
$username = '';
$password = '';

$from = $_POST['from'];
$to = $_POST['to'];
$message = $_POST['message'];
$text = urlencode($message);
//Send sms   
private function sendSms(){        
      $posturl=file('http://api.infobip.com/api/v3/sendsms/plain?user=$username&password=$password&sender=$from&SMSText=$text&GSM=$to'); 
return $posturl;
}
?>

它将根据返回响应行将响应作为数组返回。

于 2015-05-23T22:14:13.227 回答
0

Infobip API PHP 教程
这是一个使用 curl 的示例代码 :)
http://api.infobip.com/api/sendsms/xml"; $xmlString = " Your infobip username infobip password title Your message here Phone number here "; $fields = "XML=" . urlencode($xmlString); $ch = curl_init($postUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); $response = curl_exec($ch); curl_close($ch); ?>

于 2016-05-03T03:51:13.123 回答