PHP function introduction—str_replace(): replace specific characters in a string

王林
Release: 2023-07-24 16:26:01
Original
2548 people have browsed it

PHP function introduction—str_replace(): Replace specific characters in a string

In PHP, string manipulation is one of the most common tasks. The str_replace() function is one of the most commonly used functions in PHP for replacing specific characters in strings. This article will introduce the usage of str_replace() function and attach code examples to help readers better understand.

  1. Str_replace() function syntax
    str_replace(search, replace, subject)

Parameter description:

  • search: required The character or string to replace. It can be an array, so that the str_replace() function will replace the elements in the array in order.
  • replace: The character or string to be replaced. It can be an array. If the search parameter is an array, the replace parameter must also be an array, and the number of elements in the two arrays must be the same.
  • subject: The target string that needs to be replaced.

Return value: the string after replacement.

  1. str_replace() function usage example

Example 1: Replace a single character

$str = "Hello, World!";
$newStr = str_replace("World", "PHP", $str);
echo $newStr; // 输出:Hello, PHP!
Copy after login

In this example, we replace the " World" with "PHP", assign the result to the $newStr variable, and print it out. The final output result is "Hello, PHP!".

Example 2: Replace multiple characters

$str = "Hello, World!";
$search = array("Hello", "World");
$replace = array("Hi", "PHP");
$newStr = str_replace($search, $replace, $str);
echo $newStr; // 输出:Hi, PHP!
Copy after login

In this example, we replace "Hello" in the string with "Hi", "World" with "PHP", and Assign the result to the $newStr variable. The final output result is "Hi, PHP!".

Example 3: Ignore case when replacing characters

$str = "Hello, world!";
$newStr = str_ireplace("WORLD", "PHP", $str);
echo $newStr; // 输出:Hello, PHP!
Copy after login

In this example, we use the str_ireplace() function to replace "world" in the string, which ignores case. So no matter whether "world" is uppercase or lowercase, the final output result is "Hello, PHP!".

  1. Summary
    The str_replace() function is one of the important functions in PHP used to replace specific characters in a string. It is very flexible and can replace a single character or multiple characters and has the ability to ignore case. Proficient in the str_replace() function can help developers perform string operations more conveniently.

I hope the introduction and examples in this article can help you understand and use the str_replace() function. Readers are reminded to pay attention to the order and data types of parameters to avoid unexpected results. At the same time, readers are encouraged to practice more and try more in order to better master this function.

I wish you more success in PHP programming!

The above is the detailed content of PHP function introduction—str_replace(): replace specific characters in a string. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!