Php string replacement function substr_replace () usage instance _ PHP Tutorial

Source: Internet
Author: User
Php string replacement function substr_replace () usage instance. Php string replacement function substr_replace () usage example this article mainly introduces the usage of php string replacement function substr_replace (). The example analyzes the usage skills of the substr_replace function in php. php string replacement function substr_replace () usage example

This article mainly introduces the usage of the php string replacement function substr_replace (). The example analyzes the usage skills of the substr_replace function in php, which has some reference value. For more information, see

This example describes the usage of the php string replacement function substr_replace. Share it with you for your reference. The specific analysis is as follows:

Substr_replace is used to replace the substring at the specified position in the specified string.

?

1

2

3

4

5

6

7

$ String = "Warning: System will shutdown in NN minutes! ";

$ Pos = strpos ($ string, "NN ");

Print (substr_replace ($ string, "15", $ pos, 2). "\ n ");

Sleep (10*60 );

Print (substr_replace ($ string, "5", $ pos, 2). "\ n ");

?>

Enter the following result in the above code:

?

1

2

3

Warning: System will shutdown in 15 minutes!

(10 minutes later)

Warning: System will shutdown in 5 minutes!

I hope this article will help you with php programming.

Examples of usage () This article mainly introduces the usage of the php string replacement function substr_replace (). The example analyzes the usage skills of the substr_replace function in php...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.