alwaysblank / rotary
Handle phone numbers.
Installs: 1 486
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 0
Forks: 0
Open Issues: 1
pkg:composer/alwaysblank/rotary
Requires
- php: ^7.2
Requires (Dev)
- phpunit/phpunit: ^8.0
README
Simplify working with phone numbers.
Warning ⚠
Rotary will support numbers that look like the standard number format used in the United State of America, i.e. nnn-nnnn or nnn nnn-nnnn. These can also be prepended with an international country code up to 5 digit long, i.e. nn nnn nnn-nnnn. Numbers that deviate from this pattern cannot be reliably interpreted.
Usage 💪
Although all the internal behaviors are easily accessible (with the exception of the Number class, all methods are available as static methods), in general, you'll just be using these methods from the Render class:
- prettywill result in- (123) 456-7890or- 456-7890.
- simplewill result in- 123 456-7890or- 456-7890.
- hrefwill result in- tel:+11234567890or- tel:+14567890.
- normalizedwill result in- 1234567890or- 567890.
You can call them like this:
use AlwaysBlank\Rotary\Render; echo Render::pretty('1234567890'); // (123) 456-7890 echo Render::pretty('123 456 7890'); // (123) 456-7890 echo Render::pretty('[123) 456/7890'); // (123) 456-7890
You can also instantiate a Rotary object, which has methods for the different format types:
use AlwaysBlank\Rotary\Rotary; $Rotary = new Rotary('123456789'); echo $Rotary->pretty(); // (123) 456-7890
This can be useful if you want access to several formats on one number.
You can put any non-digit characters you like in your argument and Rotary will simply ignore them--it cares only for digits.
234-5678and2dfsad__34-5)(6=78are identical so far as it's concerned.
Note: Rotary will try to interpret strange arguments, but it has limits, so please try to pass it numbers that make sense. 🙏