최신글스킨에 첨부파일중 2번째첨부이미지만 썸네일 시키기
본문
<?php for ($i=0; $i<count($list); $i++) { ?>
<?php
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
${'img_content'.($count_image+1)} = '<li class="backimage" style="background:url('.$thumb[src].') center center no-repeat;">';
} else {
$img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';
}
echo $img_content1;
?>
이렇게해서 첫번째 첨부한 사진들만 나오게 하는것은 성공했는데요
두번째 사진만 나오도록 하려면 어떻게 해야 하나요?
[참고팁]
https://sir.kr/qa/56269
답변 2
아래코드를 for문 안에 넣어주시구요. $board_file_path 랑 $board_file_url은 for문박에 한번만 넣어주셔도 됩니다.
$board_file_path = G5_DATA_PATH . '/file/' . $bo_table;
$board_file_url = G5_DATA_URL . '/file/' . $bo_table;
$list[$i]['file'] = get_file($bo_table, $list[$i]['wr_id']);
$thumb2_src = $board_file_url . "/" . thumbnail($list[$i]['file'][1]['file'], $board_file_path, $board_file_path, $thumb_width,$thumb_height, false,true);
그리고나서 원하는 위치에 img태그 넣어주세요
<img src=<?=$thumb2_src?> />
답변을 작성하시기 전에 로그인 해주세요.