我已经编写了一个替换博客中某些模式的函数。例如,当有人输入::)
时,此功能会将其替换为笑脸图释。
但是现在我尝试做一些特别的事情,但不知道如何完成它。我想将匹配解析为另一个函数,如下所示:
$pattern[] = "/\[ourl\](.*?)\[\/ourl\]/i";
$replace[] = "" . getOpenGraph("$1") . "";
$value = preg_replace($pattern, $replace, $value);
如果有人使用[ourl] www.cnn.com [/ ourl],此功能将检索OpenGraph信息并返回特定的HTML代码。
但是这不起作用,因为它没有将$1
解析为函数。
我该如何解决这个问题?
更新
基于提示u_mulder给了我,我能够把它拉下来
答案 0 :(得分:1)
我创建了一个演示来演示如何调用getOpenGraph()
以及如何将捕获组作为参数传递,而不在preg_replace_callback()
的第二个参数中指定它们。
我修改了模式分隔符,以便不需要转义结束标记中的斜杠。
function getOpenGraph($matches){
return strrev($matches[1]); // just reverse the string for effect
}
$input='Leading text [ourl]This is ourl-wrapped text[/ourl] trailing text';
$pattern='~\[ourl\](.*?)\[/ourl\]~i';
$output=preg_replace_callback($pattern,'getOpenGraph',$input);
echo $output;
输出:
Leading text txet depparw-lruo si sihT trailing text
答案 1 :(得分:0)
试试这个:
<?php
$content = "[ourl]test[/ourl]\n[link]www.example.com[/link]";
$regex = "/\[(.*)\](.*?)\[(\/.*)\]/i";
$result = preg_replace_callback($regex, function($match) {
return getOpenGraph($match[1], $match[2]);
}, $content);
function getOpenGraph($tag, $value) {
return "$tag = $value";
}
echo $result;