preg_replace_callback替换preg_replace给了我一个警告

时间:2015-11-05 11:28:16

标签: php preg-replace preg-replace-callback vqmod

这是我的代码。

private function _checkMatch($modFilePath, $checkFilePath) {
        $modFilePath = str_replace('\\', '/', $modFilePath);
        $checkFilePath = str_replace('\\', '/', $checkFilePath);

        $modFilePath = preg_replace('/([^*]+)/e', 'preg_quote("$1", "~")', $modFilePath);
        $modFilePath = str_replace('*', '[^/]*', $modFilePath);
        $return = (bool) preg_match('~^' . $modFilePath . '$~', $checkFilePath);
        return $return;
}

我将preg_replace更改为preg_replace_callback,但它给了我以下错误。

Warning: preg_replace_callback(): Requires argument 2, 'preg_quote("$1", "~")', to be a valid callback

我目前正在使用opencart版本1.x.x

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:3)

http://php.net/manual/en/function.preg-replace-callback.php

您需要使用有效回调作为第二个参数。您可以将函数或其名称用作字符串:

$modFilePath = preg_replace_callback('/[^*]+/', function ($matches){
    return preg_quote($matches[0], "~");
}, $modFilePath);

我删除了不安全的e修饰符,并将其替换为preg_replace_callback函数的有效回调。

对于旧版本的PHP,您需要在代码下面添加函数语句

function myCallback($matches){
    return preg_quote($matches[0], "~");
}

然后使用preg_replace_callback('/[^*]+/', 'myCallback', $modFilePath);