PHP strsrt()函数与示例
PHPstrsrt()
方法
strsrt()函数是PHP中的字符串函数,用于替换字符串中的字符。在此功能中,我们可以提供多个要替换的字符,以新的多个替换字符集。(例如:如果我们想将“a”替换为“x”,将“b”替换为“y”,那么我们可以传递“ab”替换为“xy”))
语法:
strstr(string, old, new);
这里,
string是主要字符串,我们必须在其中替换某些字符。
old是要替换的字符集。
new是要替换的字符集。
例子:
Input: str = "这是一个游戏。"; old = "ia" new = "eo" Output: Thes es o Gome. Input: str = "这是一个游戏。"; old = " ." new = "_#" Output: This_is_a_Game#
PHP代码:
<?php $str = "这是一个游戏。"; //replacing "i" with "e" and "a" with "0" echo (strtr($str,"ia","eo") . "\n"); $str = "这是一个游戏。"; //replacing space with "_" and dot (.) with "#" echo (strtr($str," .","_#") . "\n"); ?>
输出结果
Thes es o Gome. This_is_a_Game#