Home >Backend Development >PHP Tutorial >PHP function to escape regular expression characters

PHP function to escape regular expression characters

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-25 08:55:58972browse
  1. $str = preg_quote( " /d{3}(-d{4})/ " );
  2. echo $str;
  3. ?>
Copy code

Results : /\d{3}(\-\d{4})/

Example 2,

  1. $str = preg_quote( " /d{3}(-d{4})/ " , " 3 " );
  2. echo $str;
  3. ?>
Copy Code

Results: /\d{3}(\-\d{4})/

The main difference between the above two examples: It’s the “3” in the red area. In the second example, “3” is also escaped.



Statement:
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