How would you randomize the last 4 digits of a phone number?
Given:
$phone = '000-000-0000';
Results would be:
$phone = '000-000-1943';
where 1943 is a random number
Can this be done in a single line command using something like preg...
or some other one line command ?