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 strspn()用法及代码示例
- PHP strstr()用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP strnatcasecmp()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
- PHP strtolower()用法及代码示例
- PHP str_split()用法及代码示例
- PHP stream_get_filters()用法及代码示例
- PHP strchr()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP strrchr用法及代码示例
- PHP strcmp()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string md5()用法及代码示例
- PHP strptime()用法及代码示例
- PHP string ltrim()用法及代码示例
- PHP stream_get_transports()用法及代码示例
注:本文由纯净天空筛选整理自 PHP strsrt() Function with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。