Home > Article > Backend Development > How to replace Chinese characters in php
php method to replace Chinese characters: first create a PHP sample file; then use the "function substr_cut($user_name){...}" method to replace Chinese characters with star symbols.
php method to replace Chinese characters:
PHP solves the problem of using * to replace Chinese characters
For the problem of using * to replace a certain part of the string:
1. Example:
$username = "linshouyue"; echo substr_replace($username,'****','3','4');
substr_replace() function
1.1) The first parameter is the string to be processed
1.2) The second parameter is the replacement symbol used
1.3) The third/fourth parameter is the string position that needs to be replaced (replacing the last four characters starting from the third character)
However, this function has no problem with the number of English characters/digits, but once it encounters Chinese characters, it will cause very embarrassing problems, because the bytes of Chinese characters and English characters are different. You can use the following method to solve it :
/** * *替换中文汉字 * @author 月月 */ function substr_cut($user_name){ $strlen = mb_strlen($user_name, 'utf-8'); $firstStr = mb_substr($user_name, 0, 1, 'utf-8'); $lastStr = mb_substr($user_name, -1, 1, 'utf-8'); return $strlen == 2 ? $firstStr . str_repeat('*', mb_strlen($user_name, 'utf-8') - 1) : $firstStr . str_repeat("*", $strlen - 2) . $lastStr; }
If you want to know more about programming learning, please pay attention to the php training column!
The above is the detailed content of How to replace Chinese characters in php. For more information, please follow other related articles on the PHP Chinese website!