Parse Holy land (Israel/Palestine) phone numbers
composer require parse-holy-land-phone/parse-phone
// via new instance
$number = new ParsePhone('025121234');
// via static method
$number = ParsePhone::create('025121234');
$number->isValid();
isValid
Checks if phone number is a valid Israeli/Palestinian phone number.isIsraeli
Checks if phone number is Israeli.isPalestinian
Checks if phone number is Palestinian.isLandLine
Checks if phone number is LandLine.isSpecial
Checks if phone number is Special (*1234).isMobile
Checks if phone number is Mobile.isBusiness
Checks if phone number is Business (1700, 1800, etc).isTollFree
Checks if phone number is TollFree (1800, etc).isPremium
Checks if phone number is Premium (1900, etc).isKosher
Checks if phone number is Kosher (phone supports only calls).isErotic
Checks if phone number is Erotic (1919).isSmsable
Checks if phone number can receive an sms (text) .getInternational
Returns phone number transformed to international format 025231234 > 97225231234.getLocal
Returns phone number transformed to local format 97225231234 > 025231234.getPhoneNumber
Returns the parsed phone number.
- Biny Yawitz