Question
Symbols that need to be escaped for regular expressions in PHP
Solution
^, $, (, ), ., [, |, *, ?, +, ,and,{
Reference answer
preg_quote
Reference answer
Everything that should be involved must be escaped
$^.+*? Something like that //
http://www.bkjia.com/PHPjc/632593.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632593.htmlTechArticleProblem Solution to regular symbols that need to be escaped in PHP ^, $, (, ), ., [, | , *, ?, +, ,and,{ Reference answer preg_quote Reference answer should be to escape $^.+*? or something //...