acpmasquerade/sms-counter-php

SMS Counter PHP Class Library which detects encoding of an SMS message text, counts the characters as per the encoding and gives page limit information.


Keywords
sms, counter, gsm
License
MIT

Documentation

SMS Counter (PHP)

Character counter for SMS Messages Original insipration : danxexe/sms-counter

Build Status

Usage

SMSCounter::count('some-string-to-be-counted'); 

which returns

stdClass Object
(
    [encoding] => GSM_7BIT
    [length] => 25
    [per_message] => 160
    [remaining] => 135
    [messages] => 1
)

Installation

sms-counter-php is available via composer on packagist.

{
    "require": {
        "acpmasquerade/sms-counter-php": "dev-master"
    }
}

Install from WobbleCode repo

(PS: Separately maintained and slightly deviated.) Please check their documentation before updating your existing installation.

https://github.com/wobblecode/sms-counter-php sms-counter-php is available via composer on packagist.

{
    "require": {
        "wobblecode/sms-counter-php": "dev-master"
    }
}

License

SMS Counter (PHP) is released under the MIT License