Home > Backend Development > PHP Tutorial > php ereg_replace()有什么用

php ereg_replace()有什么用

PHPz
Release: 2020-09-04 15:53:22
Original
1581 people have browsed it

php ereg_replace()有什么用

PHP ereg_replace()是中的一个内置函数,作用是:

ereg_replace()函数搜索由模式指定的字符串,如果找到,则用替换模式替换。 ereg_replace()函数在与ereg()相同的前提下运行,该函数扩展到查找和替换模式,而不是简单地定位它。

像ereg()一样,ereg_replace()区分大小写。

返回值

  • 发生替换后,修改后的字符串将被返回。

  • 如果没有找到匹配,字符串将保持不变。

示例

以下是一段代码,将此代码复制并粘贴到文件中,并验证结果。

<?php
   $copy_date = "Copyright 1999";
   $copy_date = ereg_replace("([0-9]+)", "2020", $copy_date);

   print $copy_date;
?>
Copy after login

输出:

Copyright 2020
Copy after login

更多相关知识,请访问 PHP中文网!!

Related labels:
php
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