<?php
$name=$_REQUEST['tumblr_id'];
if($name=="")
{
$name=$getPageTumblrName;
}
$pCount=1;
$photoPosts=$img_post;
$numPosts = 7;
$name=$getPageTumblrName;
echo $name;
$feedURL = "http://$name.tumblr.com/api/read/?num=$numPosts";
$xml = @simplexml_load_file($feedURL);
echo "<pre>";
print_r($xml);
echo "</pre>";
foreach(@$xml->posts->post as $post)
{
switch ($post['type']) {
case 'photo':
$photo[] = (string) $post->{'photo-caption'};
$img[] = (string) $post->{'photo-url'};
if($pCount==$photoPosts)
// echo "Here are your recent photo posts";
for($i=0;$i<$photoPosts;$i++)
{
if(isset($img[$i]))
{
echo "<div style='width:518px;height:350px;border-bottom: 1px solid;margin:0px auto;'><div style='width:210px;height:200px;float:left;'>".'<img style="width:200px;height:200px;" src="' . $img[$i] . '" />'."</div><div style='width:300px;height:150px;float:right;'>".@substr($photo[$i],0,320)."</div></div><br>";
}
}
$pCount=$pCount+1;
// else
// {
// echo "You have no recent uploaded photo posts";
// }
break;
case 'regular':
$title= (string) $post->{'regular-title'};
$body= (string) $post->{'regular-body'};
$small_post = substr($body,0,320);
echo "<div style='width:518px;height:250px;border-bottom: 1px solid;'><div style='width:518px;height:50px;float:left;'>". $title ."</div><div style='width:518px;height:200px;float:left;'>".$small_post."</div></div><br>";
break;
case 'audio':
$audio= (string) $post->{'audio-caption'};
$audioply= (string) $post->{'audio-player'};
$idtitle= (string) $post->{'id3-title'};
$idartist= (string) $post->{'id3-artist'};
echo "<div style='width:518px;height:100px;border-bottom: 1px solid;'><div style='width:518px;height:50px;float:left;'>". $audio ."</div><div style='width:518px;height:50px;float:left;'>".$audioply."</div></div><br>";
break;
case 'link':
$link= (string) $post->{'link-text'};
$linkul= (string) $post->{'link-url'};
$linkdes= (string) $post->{'link-description'};
echo "<div style='width:518px;height:350px;border-bottom: 1px solid;'><div style='width:518px;height:50px;float:left;'>". $link ."</div><div style='width:518px;height:50px;float:left;'>"."<a href='".$linkul."'>"."treesandboots"."</a></div><div style='width:518px;height:200px;float:left;'>".@substr($linkdes,0,320)."</div></div><br>";
break;
case 'quote':
$text= (string) $post->{'quote-text'};
$quote= (string) $post->{'quote-source'};
echo "<div style='width:518px;height:150px;border-bottom: 1px solid;'><div style='width:518px;height:50px;float:left;'>" . $text ."</div><div style='width:518px;height:100px;float:left;'>".$quote."</div></div><br>";
break;
case 'video':
$video= (string) $post->{'video-caption'};
$videocap= (string) $post->{'video-source'};
$videoply= (string) $post->{'video-player'};
echo "<div style='width:518px;height:400px;border-bottom: 1px solid;'><div style='width:518px;height:50px;float:left;'>". $video ."</div><div style='width:518px;height:350px;float:left;'>".$videoply."</div></div><br>";
break;
default:
echo "no post available";
break;
}
}
?>
我正在使用此脚本但收到错误: -
Warning: Invalid argument supplied for foreach() in /public_html/samples/tab/tumblr/controllers/feed.php on line 19
答案 0 :(得分:1)
尝试从@
中的$xml
变量名称中获取foreach
符号。您只需要它来抑制对simplexml_load_file()
的调用的警告。
答案 1 :(得分:0)
看起来for for each中的第一个参数不是数组。
通过大多数RSS源,我假设您需要foreach(@$xml->posts as $post)
。
我也更喜欢将我的foreach包装在if语句中
if(count($xml->posts))
{
foreach($xml->posts as $post)
{
//...
}
}
答案 2 :(得分:-1)
foreach($xml->posts->post as $post)