Html Wrap

Ben onlara bir differen't renk stil ve onlara yoluyla bağlantı böylece benim tweets adları etrafında etiketleri sarmak istiyorum. Bu benim tweet oldu Örneğin:

@ BenPaton Lorem ipsum dolor consectetur adipiscing elit, sit amet.

Ben bunu yapmak istiyorum:

<a href="http://www.twitter.com/benpaton" target="_blank" class="green">@benpaton</a> Lorem ipsum dolor sit amet, consectetur adipiscing elit. 

Bu dışarı bağlantıları ile şu anda benim son tweet işlemek için şu anda kullanıyorum php:

        <?php
        /** Script to pull in the latest tweet */
        $username='benpaton'; // set user name
        $format='json'; // set format
        $tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/{$username}.{$format}")); // get tweets and decode them into a variable
        $latestTweet = $tweet[0]->text; // copy the text element from the latest tweet[0] to var $latestTweet
        $latestTweet = str_replace("\"","",$latestTweet);  // remove speech marks from tweets as this closes the alt tag
    ?>

Yardımlarınız için teşekkürler!

0 Cevap