query($sql) or die(printf("Error: %s ".$sql, $mysqli->sqlstate)); list($sort)=$result->fetch_row(); return ++$sort; } } ##################################################################################### # 建立目錄 ##################################################################################### if(!function_exists("mk_dir")){ function mk_dir($dir = "") { #若無目錄名稱秀出警告訊息 if (empty($dir)) { return; } #若目錄不存在的話建立目錄 if (!is_dir($dir)) { umask(000); //若建立失敗秀出警告訊息 mkdir($dir, 0777); } } } ######################################## # #取得圖片 ######################################## function get_file_name($col_sn,$col_name) { global $mysqli; if(!$col_sn or !$col_name)return; # $sql = "select * from `show_files` where `col_sn`='{$col_sn}' and `col_name`='{$col_name}' order by sort"; $result = $mysqli->query($sql) or die(printf("Error: %s ".$sql, $mysqli->sqlstate)); $row = $result->fetch_assoc(); #---------------- return $row; } ######################################## # #取得圖片src ######################################## function get_file_name_src($col_sn,$col_name) { if(!$col_sn or !$col_name)return; $row = get_file_name($col_sn,$col_name); #---------------- #圖片檔src $file_name = $row['file_name'] ? WEB_URL."/uploads".$row['sub_dir']."/".$row['file_name']:""; return $file_name; } ```