$photo[] = (string) $post->{'photo-caption'};
$photo_post[] = substr($photo,0,320);
$img[] = (string) $post->{'photo-url'};
if($pCount==$photoPosts)
for($i=0;$i<$photoPosts;$i++)
{
if(isset($img[$i]))
{
echo "<div style='width:518px;height:250px;border-bottom: 1px solid;'><div style='width:210px;height:200px;float:left;'>".'<img style="width:200px;height:200px;" src="' . $img[$i] . '" />'."</div><div style='width:300px;height:50px;float:right;'>".$photo_post[$i]."</div></div><br>";
}
}
$pCount=$pCount+1;
这里 substr 不起作用,我的照片说明没有出现。