具有数组模式和替换的PREG_REPLACE_CALLBACK

2022-03-22 00:00:00 php preg-replace preg-replace-callback

我有一个函数使用preg_replace(),其中模式和替换是数组。我需要一个计数器来跟踪替换,所以我将函数转换为使用preg_replace_callback和闭包,但是我似乎找不到一种方法来区分将匹配传递给回调匹配的模式。有没有办法使用preg_place_callback替换array=>数组?

理想情况下,这是我想要的工作方式,但显然不会这样,因为$Pattern和$Replace在调用中求值,而不是在每次替换之间求值

function replaceTags($text)
{
    $i = 1;

    $pattern = array(
        '/[d](.*?)[/d]/',
        '/[s](.*?)[/s]/',
    );

    $replace = array(
        '<div id="'.($i++).'">$1</div>',
        '<span id="'.($i++).'">$1</span>',
    );

    return preg_replace($pattern, $replace, $text);
}

解决方案

如果我理解正确的话,您只需要在调用回调函数之间保持状态。执行此操作的理想方式是使用成员函数。状态存储在对象实例中。每次调用时,您都可以修改对象,从而更改您的状态。

我还向您的模式添加了额外的捕获,以便区分回调中的模式。

<?php
class TagReplacer {
    private $counter = 0;

    public function replacer($matches) {
        // modify the state
        $this->counter++;

        // return the replacement text using the state
        if ($matches[1] === "d")
            $tag = 'div';
        else
            $tag = 'span';
        return "<{$tag} id="{$this->counter}">{$matches[2]}</{$tag}>";
    }
}

function replaceTags($text) {
    $stateObject = new TagReplacer();
    $patterns = array(
        '/[(d)](.*?)[/d]/',
        '/[(s)](.*?)[/s]/',
    );

    return preg_replace_callback(
            $patterns,
            array(&$stateObject, "replacer"),
            $text);
}

echo replaceTags("zzz[d]123[/d]zzz[s]456[/s]zzz[d]78[/d]zzz[s]90[/s]zzz");
?>

输出为

zzz<div id="1">123</div>zzz<span id="3">456</span>zzz<div id="2">78</div>zzz<span id="4">90</span>zzz

我很惊讶ID没有按数字顺序排列。我的猜测是preg_place_callback迭代通过模式数组,一次为每个模式执行所有替换。

相关文章