当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP strsrt()用法及代码示例


PHP strsrt() 函数

strsrt() 函数是 PHP 中的字符串函数,用于替换字符串中的字符。在这个函数中,我们可以提供多个要替换的字符,以替换为一组新的多个字符。 (例如:如果我们想用 "x" 替换 "a",用 "y" 替换 "b" ——那么我们可以通过 "ab" 替换为 "xy")。

用法:

    strstr(string, old, new);

这里,

  • string是主字符串,我们必须在其中替换某些字符。
  • old是要替换的字符集。
  • new是要替换的字符集。

例子:

    Input:
    str = "This is a Game.";
    old = "ia"
    new = "eo"
    Output:
    Thes es o Gome.

    Input:
    str = "This is a Game.";
    old = " ."
    new = "_#"
    Output:
    This_is_a_Game#

PHP代码:

<?php
	$str = "This is a Game.";
	//replacing "i" with "e" and "a" with "0"
	echo (strtr($str,"ia","eo") . "\n");

	$str = "This is a Game.";
	//replacing space with "_" and dot (.) with "#"
	echo (strtr($str," .","_#") . "\n");
?>

输出

Thes es o Gome.
This_is_a_Game#


相关用法


注:本文由纯净天空筛选整理自 PHP strsrt() Function with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。