XOOPS模組開發記錄
一、取得圖片
- 取得單圖
#取得圖片
#----單檔圖片上傳(記得引入$module_name)
$subdir = $kind; //子目錄
$col_name = $kind;//資料表關鍵字
$col_sn = $row['sn'];//商品流水號
$thumb = false ; //大圖
$ugmUpFiles = new ugmUpFiles($module_name, $subdir);//實體化
$pic = $ugmUpFiles->get_rowPicSingleUrl($col_name,$col_sn,$thumb);
-