0
我試圖使用BulkSMS API從我的PHP網站發送短信到手機。我使用下面的代碼,但我不知道哪裏出了問題。我沒有收到短信,沒有任何內容顯示在瀏覽器中,只是一個空白頁面。使用BulkSMS.com發送短信
<?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);
}
?>
請提供一些附加信息,如從服務器返回的錯誤日誌或異常 – nKognito
實際上沒有任何內容僅顯示空白頁...我將xampp用作服務器 – Arwa
您的'do_post_request'函數是否被調用? – devqon