Mask Credit Card

Mask a credit card number for display, showing only the last 4 digits.

Code

Utilities
'**** **** **** ' . substr($cardNumber, -4);

Parameters

Credit card number.

Server

More PHP Snippets