substr不在数组中工作

时间:2011-07-15 10:58:58

标签: php arrays tumblr substr

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

1 个答案:

答案 0 :(得分:3)

如果要从$photo中提取子字符串,则应确保$photo是字符串而不是数组。保留$photo之后的[]。[/ p>

如果你想将照片作为数组取消引用像substr($photo[0], 0, 320);这样的数组。

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