ツイート スクリプトに小さな問題があります。しかし、どういうわけか、エラーが何であるかわかりません。これは私に与えるエラーです:
$url = "http://www.twitter.com/statuses/user_timeline/{$username}.xml?count={$number}";
$tweets = file_get_contents($url);
$feed = new SimpleXMLElement($tweets);
function time_stamp($date){
if (empty($date)){
return "No date provided";
}
index.php ページには、次のコードが表示されます。
<?php
$username = "user";//your twitter username
$number = 3;//number of tweets
include ("{$dir}/php/tweets.php");
?>
私が間違っていることを知っていますか?