You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.9 KiB
70 lines
1.9 KiB
![]()
7 years ago
|
<?php
|
||
|
|
||
|
|
||
|
|
||
|
class SendSMSclass
|
||
|
{
|
||
|
//input parameters ---------------------
|
||
|
var $username; //your username
|
||
|
var $password; //your password
|
||
|
var $sender; //sender text
|
||
|
var $message; //message text
|
||
|
var $inputgsmnumbers = array(); //destination gsm numbers
|
||
|
//--------------------------------------
|
||
|
|
||
|
var $host;
|
||
|
var $XMLgsmnumbers;
|
||
|
var $xmldata;
|
||
|
var $request_data;
|
||
|
var $response;
|
||
|
|
||
|
|
||
|
function SendSMS($username, $password, $sender, $message, $inputgsmnumbers)
|
||
|
{
|
||
|
$this->username = $username;
|
||
|
$this->password = $password;
|
||
|
$this->sender = $sender;
|
||
|
$this->message = $message;
|
||
|
$this->inputgsmnumbers = $inputgsmnumbers;
|
||
|
|
||
|
$this->host = "https://api.smsfactor.com";
|
||
|
|
||
|
$this->convertGSMnumberstoXML();
|
||
|
$this->prepareXMLdata();
|
||
|
|
||
|
$this->response = $this->do_post_request($this->host,$this->request_data);
|
||
|
return $this->response;
|
||
|
}
|
||
|
|
||
|
function convertGSMnumberstoXML()
|
||
|
{
|
||
|
$gsmcount = count($this->inputgsmnumbers); #counts gsm numbers
|
||
|
|
||
|
for ( $i = 0; $i < $gsmcount; $i++ )
|
||
|
{
|
||
|
$this->XMLgsmnumbers .= "<gsm>" . $this->inputgsmnumbers[$i] . "</gsm>";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function prepareXMLdata()
|
||
|
{
|
||
|
$this->xmldata = "<sms><authentification><username>" . $this->username . "</username><password>" . $this->password . "</password></authentification><message><sender>" . $this->sender . "</sender><text>" . $this->message . "</text></message><recipients>" . $this->XMLgsmnumbers . "</recipients></sms>";
|
||
|
$this->request_data = 'XML=' . $this->xmldata;
|
||
|
}
|
||
|
|
||
|
|
||
|
function do_post_request($url, $postdata, $optional_headers = null)
|
||
|
{
|
||
|
$ch = curl_init();
|
||
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
|
||
|
curl_setopt($ch, CURLOPT_POST, 1);
|
||
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
|
||
|
$response = curl_exec($ch);
|
||
|
curl_close($ch);
|
||
|
return $response;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|