-1

在设法使用 preg_match_all 之后,我想用matchedText替换匹配的文本,但它似乎不起作用。看看我的代码,我做错了什么?

    <?php
    $tweets = getTweets($profile->twitter_id);

    for($i=0;$i<4;$i++):
        // finds matches
        $num_matches = preg_match_all('/@\w+/', $tweets[$i]->description, $matches);

        if($num_matches):
            echo $num_matches.'<br />';
            for($c=0;$c<$num_matches;$c++):

                $subject = $tweets[$i]->description;
                $pattern = array();
                $pattern[$c] = $matches[0][$c];
                $replacement = array();
                $replacement[$c] = '<a href="https://twitter.com/#!/">'.$matches[0][$c].'</a>';

            endfor;
                echo preg_replace($pattern, $replacement, $subject).'<br /><br />';

        else:
            echo auto_link($tweets[$i]->description).'<br /><br />';
        endif;
    endfor;
?>
4

3 回答 3

5

您需要在循环之外定义$patternand $replacement,否则它们将在每次迭代时重新初始化为空数组:

$pattern = array(); $replacement = array();
for($c=0;$c<$num_matches;$c++):
于 2012-07-02T22:17:48.510 回答
2

也许,您的preg_replace-ing 不使用模式:$matches[0][$c]包含一个字符串,而不是带有分隔符的模式。再说一次,我可能错了。查看匹配的内容以及替换的内容可能会有所帮助

Nips,我不敢相信我也忽略了循环内的数组声明......当然,这是你应该解决的第一件事!

于 2012-07-02T22:17:45.323 回答
0

谢谢大家的回答,但是我停止使用 preg_replace,而是使用了 str_replace。它工作正常。这是我的最终代码。

    <?php
        $tweets = getTweets($profile->twitter_id);

        for($i=0;$i<4;$i++):
            // first, explode the description to eliminate the username in the description
            $tweet_des = $tweets[$i]->description;
            $tweet_no_username_des = explode(':',$tweet_des,2); // added a limit parameter, ensuring only the username will be excluded
            $new_tweet_description = $tweet_no_username_des[1].'<br />';

            // the date the tweet is published
            echo $date_pub = $tweets[$i]->pubDate;

            // using preg_match_all to find matches, texts having '@' as the first letter
            $num_matches = preg_match_all('/@\w+/', $tweets[$i]->description, $matches);
            if($num_matches):   // if match(es) are found
                $search_arr = array();  // declared an array to contain the search parameter for str_replace
                $replace_arr = array(); // declared an array to contain the replace parameter for str_replace
                for($c=0;$c<$num_matches;$c++):
                    $search_arr[$c] = $matches[0][$c];
                    $name_links[$c] = explode('@',$search_arr[$c]);
                    $not_link_name = $name_links[$c][1];
                    $replace_arr[$c] = '<a href="http://twitter.com/#!/'.$not_link_name.'" target="_blank">'.$matches[0][$c].'</a>';
                endfor;
                echo auto_link(str_replace($search_arr, $replace_arr, $new_tweet_description)).'<br />';
            else:
                echo auto_link($new_tweet_description).'<br />';
            endif;
        endfor;
    ?>

最初我的问题是找到以“@”开头的文本,并将其链接到 Twitter 中的相应帐户。请随时批评我的代码,但我认为它仍然存在错误。:)

于 2012-07-03T21:21:20.243 回答