Example of php regular expression escape characters

WBOY
Release: 2016-07-25 08:54:07
Original
1093 people have browsed it
  1. $str = preg_quote( " /d{3}(-d{4})/ " );
  2. echo $str;
  3. ?>
Copy code

result: /\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 difference between these two examples: It’s the “3” in the red area. In the second example, “3” is also escaped. PHP escape character function PHP function to escape regular expression characters The problem of automatically adding escape characters when passing parameters in PHP form POST php anti-injection and form submission value escaping code Examples of character escaping methods in mysql statements Notes on php character escaping



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!