如何使用php的replace函數(shù)進(jìn)行全局替換

PHP
小樊
92
2024-09-02 02:23:45

在 PHP 中,要進(jìn)行全局替換,可以使用 str_replace() 函數(shù)

string str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )

參數(shù)說明:

  • $search:需要查找的值,可以是字符串或者數(shù)組。
  • $replace:替換后的值,可以是字符串或者數(shù)組。
  • $subject:被搜索和替換的字符串或者數(shù)組。
  • $count(可選):一個(gè)變量,用于保存替換次數(shù)。

示例:

<?php
$original_string = "Hello, world! I love this world.";
$search_string = "world";
$replace_string = "planet";

// 使用 str_replace() 函數(shù)進(jìn)行全局替換
$replaced_string = str_replace($search_string, $replace_string, $original_string);

echo $replaced_string; // 輸出 "Hello, planet! I love this planet."
?>

在這個(gè)示例中,我們將 $original_string 中的所有 “world” 替換為 “planet”。str_replace() 函數(shù)會(huì)返回替換后的新字符串,而不會(huì)修改原始字符串。

0