PHP uses the regular expression to replace the display function with an asterisk (*) for the four digits in the middle of the phone number.
Because the customer needs to maintain privacy, the mobile phone number cannot be completely displayed on the website, but it cannot be displayed, so many websites think of display but not complete display, in fact, it is very easy to use the asterisk to replace the display part with a regular expression.
Method 1:
Function hidtel ($ phone) {$ IsWhat = preg_match ('/(0 [0-9] {2, 3} [\-]? [2-9] [0-9] {6, 7} [\-]? [0-9]?) /I ', $ phone); // fixed phone if ($ IsWhat = 1) {return preg_replace ('/(0 [0-9] {2, 3} [\-]? [2-9]) [0-9] {3, 4} ([0-9] {3} [\-]? [0-9]?) /I ',' $1 ***** $ 2', $ phone );} else {return preg_replace ('/(1 [358] {1} [0-9]) [0-9] {4} ([0-9] {4 }) /I ',' $1 ***** $ 2', $ phone );}}
Method 2:
$ Num = "13966778888" $ str = substr_replace ($ num );
Instance:
$ Phonenum = "13966778888"; echo hidtel ($ phonenum );
Final output: 139 **** 8888