-2

我正在尝试用另一个替换数据库(wordpress)中的一些 URL,但这很棘手,因为很多 URL 都是重定向。我正在尝试根据结果用重定向的 URL 或我选择的 URL 替换 URL。我可以毫无问题地完成匹配,但我无法替换它。我试过 str_replace,但它似乎没有替换 URL。当我尝试 preg_replace 时,它​​会给出“警告:preg_replace():分隔符不能是字母数字或反斜杠”。谁能指出我正确的方式来做到这一点?

if(preg_match($url_regex,$row['post_content'])){
    preg_match_all($url_regex,$row['post_content'],$matches);

    foreach($matches[0] as $match){
        echo "{$row['ID']} \t{$row['post_date']} \t{$row['post_title']}\t{$row['guid']}";

        $newUrl = NULL;
        if(stripos($url_regex,'domain1') !== false || stripos($url_regex,'domain2') !== false || stripos($url_regex,'domain3') !== false){
            $match = str_replace('&','&',$match);

            $ch = curl_init();
            curl_setopt($ch,CURLOPT_URL,$match);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
            curl_setopt($ch, CURLOPT_HEADER, true);
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
            $html = curl_exec($ch);
            $newUrl = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);

            if(stripos($newUrl,'domain4') !== false)
                $newUrl = NULL;

        }
        else

        if($newUrl == NULL)
        {   $newUrl = 'http://www.mysite.com/';

        }
        echo "\t$match\t$newUrl";
        $content = str_replace($match,$newUrl,$row['post_content']); 
        echo "\t (" . strlen($content).")";
        echo "\n";

    }
}
4

1 回答 1

1

这就是使用 Perl 正则表达式的方法。

$baesUrlMappings = array('/www.yoursite.com/i' => 'www.mysite.com', 
                         '/www.yoursite2.com/i' => 'www.mysite2.com',);

echo preg_replace(array_keys($baesUrlMappings), array_values($baesUrlMappings), 'http://www.yoursite.com/foo/bar?id=123');
echo preg_replace(array_keys($baesUrlMappings), array_values($baesUrlMappings), 'http://www.yoursite2.com/foo/bar?id=123');

http://codepad.viper-7.com/2ne7u6

请阅读说明书!你应该能够弄清楚这一点。

于 2013-02-15T19:49:23.610 回答