How can I remove the first 4 characters of a string using PHP?
$num = "+918883967576"; $str = substr($num, 3); echo $str;
Output:8883967576