當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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