Answers for "php hide credit card middle numbers"

PHP
0

php hide credit card middle numbers

$email = '[email protected]';
$email =  substr_replace($email,"xxxxxxxxxx",3,10);

$contact = "9899784414";
$contact = substr_replace($contact,"xxxxxx",2,6);

echo $email;
echo "<br/>";
echo $contact;
Posted by: Guest on March-25-2021

Browse Popular Code Answers by Language