PHP:字符串到正则表达式

前端之家收集整理的这篇文章主要介绍了PHP:字符串到正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用字符串作为正则表达式模式但我跟随错误
PHP Warning:  preg_match(): Unknown modifier '>' in /Applications/MAMP/htdocs/cruncher/Plugins/wordpress/WPDetect.PHP on line 22
PHP Warning:  preg_match(): Unknown modifier '/' in /Applications/MAMP/htdocs/cruncher/Plugins/wordpress/WPDetect.PHP on line 22

代码

$str = "<Meta name=\"generator\" content=\"wordpress.com\" />"
preg_match("/".$str."/",$content->content)

我也试过使用preg_quote函数,但我遇到了类似的问题.

使它运作的正确方法是什么?

苏丹

使用带有| … |的preg_quote函数和模式
preg_match("|" . preg_quote($str,"|") . "|",$content->content)
原文链接:https://www.f2er.com/php/137837.html

猜你在找的PHP相关文章