0

我有以下wordpress代码

function shortcode_parse_atts($text) {
    $atts = array();
    $pattern = '/(\w+)\s*=\s*"([^"]*)"(?:\s|$)|(\w+)\s*=\s*\'([^\']*)\'(?:\s|$)|(\w+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|(\S+)(?:\s|$)/';
    $text = preg_replace("/[\x{00a0}\x{200b}]+/u", " ", $text);
    if ( preg_match_all($pattern, $text, $match, PREG_SET_ORDER) ) {
        foreach ($match as $m) {
            if (!empty($m[1]))
                $atts[strtolower($m[1])] = stripcslashes($m[2]);
            elseif (!empty($m[3]))
                $atts[strtolower($m[3])] = stripcslashes($m[4]);
            elseif (!empty($m[5]))
                $atts[strtolower($m[5])] = stripcslashes($m[6]);
            elseif (isset($m[7]) and strlen($m[7]))
                $atts[] = stripcslashes($m[7]);
            elseif (isset($m[8]))
                $atts[] = stripcslashes($m[8]);
        }
    } else {
        $atts = ltrim($text);
    }
    return $atts;
}

使用路径执行函数后,出现此错误:

警告:preg_replace() [function.preg-replace]:编译失败:在第 258 行的 /PATH/wp-includes/shortcodes.php 中的偏移量 -1 处设置了未知选项位

第 258 行标记在这里

$text = preg_replace("/[\x{00a0}\x{200b}]+/u", " ", $text); //<--- LINE 258

任何人都可以提供任何帮助吗?

将不胜感激

无法降级php版本...

4

1 回答 1

1

发生这种情况是因为您的 PCRE 已过时。将 PHP 更新到 5.3 版本后,您需要手动更新服务器的 PCRE。

在 SSH 中运行以下代码:

pcretest -C

它会显示你运行它的版本。最后一个版本是 8.32。

这是您应该与每个 PHP 版本一起使用的 PCRE 版本的关系:http: //php.net/manual/en/pcre.installation.php

于 2013-04-05T03:33:40.683 回答