Files
faveo/vendor/propaganistas/laravel-phone/helpers.php
2015-05-01 13:13:01 +05:30

9 lines
333 B
PHP

<?php
function phone_format($phone, $country, $format = null) {
$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
$phoneProto = $phoneUtil->parse($phone, $country);
$format = is_null($format) ? \libphonenumber\PhoneNumberFormat::INTERNATIONAL : $format;
return $phoneUtil->format($phoneProto, $format);
}