Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rrguardo/easy_sms_php_lib

SMS API Client for https://github.com/rrguardo/smr
https://github.com/rrguardo/easy_sms_php_lib

php sms sms-api

Last synced: 5 days ago
JSON representation

SMS API Client for https://github.com/rrguardo/smr

Awesome Lists containing this project

README

        

SMS API Client for PHP
======================

This lib allow easily add SMS text messages to your php applications. Just create an account in
https://easysms.4simple.org for obtain your API credential.
Code Examples ::

send_sms("13206943331", "Hello I am doing a test!");
echo "SEND SMS RESPONSE: " . print_r($result, true) . "\n";

//How get the account balance
$balance = $api_obj->get_balance();
echo "Account balance: " . print_r($balance, true) . "\n";

// How check SMS processing status
$result = $api_obj->get_sms_status(5);
echo "SMS PROCESSING STATUS: " . print_r($result, true) . "\n";

?>