我的下表中有博客文章的图片:
+----+---------+------------------------+-----------+-----------+-------+
| id | id_post | imagine | descriere | tip | sters |
+----+---------+------------------------+-----------+-----------+-------+
| 1 | 4 | asdasdsadasdasdasd.jpg | NULL | thumbnail | 0 |
| 2 | 4 | asdasdsadasdasdasd.jpg | NULL | full | 0 |
| 3 | 4 | asdasdsadasdasdasd.jpg | NULL | thumbnail | 0 |
| 4 | 4 | asdasdsadasdasdasd.jpg | NULL | full | 0 |
+----+---------+------------------------+-----------+-----------+-------+
在此表中有一个名为“tip”(或英文类型)的列,表示图像类型:全屏或缩略图。当有人上传图片时,总会有一对“完整”和“缩略图”条目。
我要做的是获取帖子的所有图像并将它们存储到数组中,但每个图像都有一个条目,如下所示:Array([0] => Array([thumbnail] =>“1.jpg”,[完整] =>“11.jpg”)...
答案 0 :(得分:1)
选择您的表并按照此代码
$array[]= array();
while($row = mysql_fetch_assoc($result))
{
//using 2-d array
$array[$row[id]][$row[tip]]= $row[imagine];
}
现在,当您想要检索特定帖子的图像时,可以使用
$array[$post_id]['full']
$array[$post_id]['thumbnail']
答案 1 :(得分:1)
嗯,1,你需要某种变量,它将full
图像与thumbnail
图像绑定在一起。目前没有办法告诉女巫缩略图去巫婆形象。
添加full_id
之类的字段,或者只是将条目组合成一行,例如:
+----+---------+--------------+---------------+-----------+-------+
| id | id_post | imagine_full | imagine_thumb | descriere | sters |
+----+---------+--------------+---------------+-----------+-------+
之后,使用循环来查看您的值,例如@ voodoo417显示:
$items = array();
while ( $row = mysql_fetch_array( $result ) ) {
$items[] = array(
'thumbnail' => $row['imagine_thumb'],
'full' => $row['imagine_full']
);
}
答案 2 :(得分:0)
试试这个
$items = array();
while ($row=mysql_fetch_array(RESOURSE)){
$items[] = array( 'thumbnail'=>$row['thumbnail'], 'full' =>$row['full'] );
}