0
            $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 不起作用,我的照片说明没有出现。

4

1 回答 1

3

如果要从中提取子字符串,$photo应确保它$photo是字符串而不是数组。在作业中留下 [] $photo

如果您希望 photo 成为数组,请取消引用数组,例如substr($photo[0], 0, 320);.

当然,在后一种情况下,您必须为您的数组提供正确的索引。

于 2011-07-15T11:03:33.223 回答