";
// 첫 번째 파일(메인 비주얼)을 제외하고 루프를 시작합니다.
for ($i = 0; $i < $view['file']['count']; $i++) {
$file = $view['file'][$i];
if (empty($file['file'])) continue;
$file_ext = strtolower(pathinfo($file['file'], PATHINFO_EXTENSION));
$is_image = in_array($file_ext, ['gif', 'jpg', 'jpeg', 'png', 'webp']);
$file_url = $file['path'].'/'.$file['file'];
if ($is_image) {
// 썸네일 생성
$source_path = G5_DATA_PATH.'/file/'.$bo_table;
$thumb = thumbnail($file['file'], $source_path, $source_path, 200, 200, false, true);
$thumb_url = G5_DATA_URL.'/file/'.$bo_table.'/'.$thumb;
echo '
';
echo '
';
echo '';
} else {
// 이미지가 아닌 파일은 다운로드 링크 제공
echo '
';
}
}
echo "