gpt4 book ai didi

PHP:字符串到正则表达式

转载 作者:可可西里 更新时间:2023-10-31 23:07:32 24 4
gpt4 key购买 nike

我尝试使用字符串作为正则表达式模式,但出现以下错误

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)

关于PHP:字符串到正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9873144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com