我正在尝试使用正则表达式从标签中提取信息,然后根据标签的各个部分返回结果。
preg_replace('/<(example )?(example2)+ />/', analyze(array($0, $1, $2)), $src);
所以我抓住部件并将其传递给analyze()
功能。在那里,我想根据部件本身做工作:
function analyze($matches) {
if ($matches[0] == '<example example2 />')
return 'something_awesome';
else if ($matches[1] == 'example')
return 'ftw';
}
等。但是一旦我进入分析函数,$matches[0]
就等于字符串'$0
'。相反,我需要$matches[0]
来引用preg_replace()调用的反向引用。我怎么能这样做?
感谢。
编辑:我刚看到preg_replace_callback()函数。也许这就是我要找的......
答案 0 :(得分:8)
你不能那样使用preg_replace
。您可能需要preg_replace_callback
答案 1 :(得分:0)
$regex = '/<(example )?(example2)+ \/>/';
preg_match($regex, $subject, $matches);
// now you have the matches in $matches and you can process them as you want
// here you can replace all matches with modifications you made
preg_replace($regex, $matches, $subject);