0

我尝试使用 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);

    }

     ?>
4

0 回答 0