PHP code example of dpsoft / asiasms

1. Go to this page and download the library: Download dpsoft/asiasms library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dpsoft / asiasms example snippets


 use Dpsoft\Asiasms\Asiasms;

try{
    /**
      *@param string $username (siasms panel.
      */
    $asiasms = new Asiasms($username, $password);
    echo $asiasms->getCredit();
}catch (\Throwable $exception){
    echo $exception->getMessage();
}

 use Dpsoft\Asiasms\Asiasms;

try{
    /**
      *@param string $username (siasms panel.
      */
    $asiasms = new Asiasms($username, $password);
    
    /**
      *@param string $message (t in panel) default panel default number 
      *@param string $udh = null (optional)
      *@param bool $isFlash = null (optional) if send bool true or false the webservice not work
      */
    $batchId = $asiasms->bulkSend($message, $receivers, $senderId, $udh, $isFlash);
}catch (\Throwable $exception){
    echo $exception->getMessage();
}

 use Dpsoft\Asiasms\Asiasms;

try{
    /**
      *@param string $username (siasms panel.
      */
    $asiasms = new Asiasms($username, $password);
    
    /**
      *@param string $message (tring $udh = null (optional)
      *@param bool $isFlash = null (optional) if send bool true or false the webservice not work
      */
    $batchId = $asiasms->send($message, $number, $senderId, $udh, $isFlash);
}catch (\Throwable $exception){
    echo $exception->getMessage();
}

 use Dpsoft\Asiasms\Asiasms;

try{
    /**
      *@param string $username (siasms panel.
      */
    $asiasms = new Asiasms($username, $password);
    
    /**
      *@param string $date (;
}catch (\Throwable $exception){
    echo $exception->getMessage();
}

 use Dpsoft\Asiasms\Asiasms;

try{
    /**
      *@param string $username (siasms panel.
      */
    $asiasms = new Asiasms($username, $password);
    
    /**
      *@param string $startDate (s->getMessagesBetweenDate($startDate, $endDate, $receiver);
    
    print_r($messages);
}catch (\Throwable $exception){
    echo $exception->getMessage();
}

Array
(
    [0] => Array
        (
            [From] => 98913xxxxxxx
            [To] => 3000xxxxxx
            [Text] => Message text
            [ReceiveDateTime] => 2018-10-14T17:46:29
        )

    [1] => Array
        (
            [From] => 98913xxxxxxx
            [To] => 3000xxxxxx
            [Text] => Message text for test
            [ReceiveDateTime] => 2018-10-14T18:10:40
        )
)