显示最近的Twitter条目
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示最近的Twitter条目相关的知识,希望对你有一定的参考价值。
<?php // Your twitter username. $username = "TwitterUsername"; // Prefix - some text you want displayed before your latest tweet. // (html is OK, but be sure to escape quotes with backslashes: for example href="link.html") $prefix = ""; // Suffix - some text you want display after your latest tweet. (Same rules as the prefix.) $suffix = ""; $feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=1"; function parse_feed($feed) { $tweet = $stepTwo[0]; return $tweet; } ?>
以上是关于显示最近的Twitter条目的主要内容,如果未能解决你的问题,请参考以下文章