Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rrguardo/easy_sms_php_lib
- Owner: rrguardo
- Created: 2016-02-29T00:11:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-02-29T00:13:34.000Z (over 8 years ago)
- Last Synced: 2024-09-06T16:48:17.749Z (2 months ago)
- Topics: php, sms, sms-api
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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";?>