如何调用 preg_replace() 中的函数?
How to call a function within preg_replace()?
我编写了一个函数来替换博客中的某些模式。例如,当有人键入::)
此函数会将其替换为笑脸表情符号。
然而现在我正在尝试做一些特别的事情,但不知道如何完成它。我想像这样解析与另一个函数的匹配:
$pattern[] = "/\[ourl\](.*?)\[\/ourl\]/i";
$replace[] = "" . getOpenGraph("") . "";
$value = preg_replace($pattern, $replace, $value);
如果有人使用 [ourl]www.cnn.com[/ourl],此函数将检索 OpenGraph 信息和 return 特定的 HTML 代码。
但是这不起作用,因为它没有将
解析为函数。
我该如何解决这个问题?
更新:
根据 u_mulder 给我的提示,我成功了
试试这个:
<?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;
我创建了一个演示来展示如何调用 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
我编写了一个函数来替换博客中的某些模式。例如,当有人键入::)
此函数会将其替换为笑脸表情符号。
然而现在我正在尝试做一些特别的事情,但不知道如何完成它。我想像这样解析与另一个函数的匹配:
$pattern[] = "/\[ourl\](.*?)\[\/ourl\]/i";
$replace[] = "" . getOpenGraph("") . "";
$value = preg_replace($pattern, $replace, $value);
如果有人使用 [ourl]www.cnn.com[/ourl],此函数将检索 OpenGraph 信息和 return 特定的 HTML 代码。
但是这不起作用,因为它没有将 解析为函数。
我该如何解决这个问题?
更新:
根据 u_mulder 给我的提示,我成功了
试试这个:
<?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;
我创建了一个演示来展示如何调用 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