preg_quote不是很理解,不是将分隔符转换成其他字符了呢?
汪汪
汪汪 2016-12-20 09:40:39
0
2
1052
汪汪
汪汪

reply all(2)
数据分析师

preg_quote I don’t understand very well, isn’t it converting the delimiter into other characters? -PHP Chinese website Q&A-preg_quote I don’t understand very well. Isn’t it converting the delimiter into other characters? -PHP Chinese website Q&A

Please watch and learn.

阿神

preg_quote() 需要参数 str 并向其中 每个正则表达式语法中的字符前增加一个反斜线。 这通常用于你有一些运行时字符串 需要作为正则表达式进行匹配的时候。

正则表达式特殊字符有: . \ + * ? [ ^ ] $ ( ) { } = ! < > | : -

eg:

<?php
$keywords  =  '$40 for a g3/400' ;
$keywords  =  preg_quote ( $keywords ,  '/' );
echo  $keywords ;  // 返回 \$40 for a g3\/400
?>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template