In PHP what is the quickest way to convert an mobile number to international format:
So 07123456789 becomes 447123456789.
I have tried a few ways and cant seem to get it to work.
This is current script:
if(strlen($gsm) > 2) {
if(!substr_compare($gsm, "07", 0, 2, false)) {
unset($gsm);
}
elseif (substr_compare($gsm, "07", 0, 3, true)) {
if(strlen($gsm) == 11) {
return "447" . substr($gsm, 2);
}
}
}
Note: This script only runs if the number matches a regex.