Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to hide 6-digit ID number in php

2025-03-10 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

Most people do not understand the knowledge points of this article "php how to hide 6-digit ID number", so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "php how to hide 6-digit ID number" article.

Hiding method: 1, using "substr_replace ($str,str_repeat (" * ", 6),-6)" statement, you can hide the last 6 bits; 2, using "substr_replace ($str,str_repeat (" * ", 6), 6)" statement, you can hide the middle 6 bits.

Operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

In PHP, you can use the substr_replace () function and substr_replace () function to hide the ID number and replace the hidden number with an asterisk.

1. Hide the last 6-digit ID number

2. Hide the middle 6-digit ID number

3. Hide the first 6 ID numbers

Description:

The substr_replace () function replaces part of a string with another string; it replaces a string of the specified length starting at the specified location.

The str_repeat () function repeats the string a specified number of times.

In the above example, the asterisk "*" character is repeated a specified number of times (consistent with the number of digits to be hidden), and the substring produced is used as a replacement value to replace part of the string.

The above is about the content of this article on "how to hide 6 ID numbers in php". I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report