0

只是想知道为什么这段代码不起作用:

    protected function parseContent($content) {
    $linkTable = array (
        'user\.php\?id=' => 'User_link'
        );
    foreach ($linkTable as $class => $code) {
    $content = preg_replace('/\<a href="https?:\/\/www\.facebook\.com\/[\w\s-]+\b'.$class.'\<\/a\>/', $code, $content);
    }
    return trim($content); }

它应该取代这样的东西

<a href="https://www.facebook.com/max.mustermann?directed_target_id=0" data-hovercard="/ajax/hovercard/user.php?id=1234567&extragetparams=%7B%22directed_target_id%22%3A0%7D">Max Mustermann</a>

进入这个

用户链接

谢谢你的帮助!

4

1 回答 1

0

你需要更多的斜线!

$linkTable = array (
        'user\\.php\\?id=' => 'User_link'
);
于 2013-08-05T14:00:17.120 回答