我尝试使用BulkSMS API从我的PHP网站向手机发送短信。我使用下面的代码,但我不知道出了什么问题。我没有收到短信,浏览器中没有显示任何内容,只是一个空白页。
<?php
$url = 'http://bulksms.vsms.net/eapi/submission/send_sms/2/2.0';
$to=some number;
$username = 'usernme';
$password = 'password';
$sender='BBMS';
$msisdn = '+968'.$to;
$content="Test";
function do_post_request($url, $data, $optional_headers = 'Content-type:application/x-www-form-urlencoded'){
$params = array('http' => array(
'method' => 'POST',
'content' => $data
));
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = @fopen($url, 'rb', false, $ctx);
if (!$fp) {
throw new Exception("Problem with $url, $php_errormsg");
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data from $url, $php_errormsg");
}
return $response;
var_dump($response);
}
?>
答案 0 :(得分:0)
查看 BulkSMS API documentation for PHP 。这提供了使用Curl发送SMS的综合代码。
我建议您先从他们的代码开始,然后修剪掉不需要的东西。