2017 © Pedro Peláez
 

library sms

PHP implementation of SMS Service in Malaysia

image

hariadi/sms

PHP implementation of SMS Service in Malaysia

  • Saturday, April 5, 2014
  • by hariadi
  • Repository
  • 2 Watchers
  • 2 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

ISMS

Build Status, (*1)

PHP implementation of ISMS Service, (*2)

Usage

Send SMS:, (*3)

//require_once 'src/Sms/isms.php';  // not required using composer
$sms = new \Sms\isms( $login, $password );
$sms->setMessage('Some message');
$sms->setNumber('Some number');
$sms->setNumber(array('number1', 'number2'));

$response = $sms->send();
var_dump($response);

Check Balance:, (*4)

//require_once 'src/Sms/isms.php';  // not required using composer
$sms = new \Sms\isms( $login, $password );

$response = $sms->balance();
var_dump($response);

Schedule SMS:, (*5)

$sms = new \Sms\isms( $login, $password );
$sms->setMessage('Some message');
$sms->setNumber('Some number');
$sms->setNumber(array('number1', 'number2'));
$sms->schedule($desc, $tr = 'onetime', $date, $hour, $min, $week = 1, $month = 1, $day = 1);

$response = $sms->send();
var_dump($response);

Official Documentation

Documentation for the entire SMS API Integration can be found on the ISMS website., (*6)

Contributing

All pull requests should be filed on the development branch hariadi/isms repository., (*7)

License

The ISMS PHP Library is open-sourced software licensed under the MIT license, (*8)

The Versions

05/04 2014

dev-master

9999999-dev https://github.com/hariadi/sms

PHP implementation of SMS Service in Malaysia

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

sms isms

05/04 2014

dev-develop

dev-develop https://github.com/hariadi/sms

PHP implementation of SMS Service in Malaysia

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

sms isms