최신글 이미지 없으면 no img
본문
최신글에 썸네일 두개를 가져오는데
이미지가 없으면 노이미지로 회색 배경이 뜨게 하고싶습니다.
<?php
for ($i=0; $i<count($list); $i++) {
$list[$i]['file'] = get_file($bo_table, $list[$i]['wr_id']);
$thumb1_src = $board_file_url . "/" . thumbnail($list[$i]['file'][0]['file'], $board_file_path, $board_file_path, $thumb_width,$thumb_height,'', false,true);
$thumb2_src = $board_file_url . "/" . thumbnail($list[$i]['file'][1]['file'], $board_file_path, $board_file_path, $thumb_width,$thumb_height,'', false,true);
?>
<img src="<?php echo $thumb1_src?>" style="margin-bottom:5px; width:; "><!---여기에 첫번째 첨부 이미지---><img src="<?php echo $thumb2_src?>" style="margin-bottom:5px; "><!---여기에 두번째 첨부 이미지--->
소스는 위와 같습니다.
어떻게 해야하나요 ㅠㅠㅠ
답변 1
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" >';
} else {
$img_content = '<span class="no_image">no image</span>';
}
이거 참고하세요 ㅎㅎ