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();isValidChecks if phone number is a valid Israeli/Palestinian phone number.isIsraeliChecks if phone number is Israeli.isPalestinianChecks if phone number is Palestinian.isLandLineChecks if phone number is LandLine.isSpecialChecks if phone number is Special (*1234).isMobileChecks if phone number is Mobile.isBusinessChecks if phone number is Business (1700, 1800, etc).isTollFreeChecks if phone number is TollFree (1800, etc).isPremiumChecks if phone number is Premium (1900, etc).isKosherChecks if phone number is Kosher (phone supports only calls).isEroticChecks if phone number is Erotic (1919).isSmsableChecks if phone number can receive an sms (text) .getInternationalReturns phone number transformed to international format 025231234 > 97225231234.getLocalReturns phone number transformed to local format 97225231234 > 025231234.getPhoneNumberReturns the parsed phone number.
- Biny Yawitz