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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。