link=mysql_connect($host,$user,$pass,$db); // $this->link = mysql_select_db($db, $this->link); } // 解構子 function __destruct() { if (is_object($this->result)) // 釋放佔用的記憶體 mysql_free_result($this->result); mysql_close($this->link); // 關閉資料庫連結 } // 執行SQL查詢 function fetchDB($sql) { mysql_query("SET CHARACTER SET UTF8", $this->link); mysql_query("SET collation_connection = 'utf8_general_ci'", $this->link); mysql_query("SET NAMES 'UTF8'", $this->link); mysql_query('SET CHARACTER SET UTF8',$this->link); // 送出Big5編碼的MySQL指令 // mysql_query($this->link,'SET CHARACTER SET UTF8'); // mysql_query($this->link, // "SET collation_connection = 'utf8_general_ci'"); // // 送出查詢的SQL指令 // $this->result = mysql_query($this->link, $sql); // // 取得影響的記錄數 // $this->affected_rows = mysqli_affected_rows( // $this->link); // if ( is_object($this->result) ) { // 是否是物件 // // 取得欄位數 // $this->num_fields=mysqli_num_fields($this->result); // // 取得記錄數 // $this->num_rows=mysqli_num_rows($this->result); // } } // 取得查詢結果一筆記錄到結合陣列 function getRecord() { if ( $row = mysql_fetch_array($this->result, MYSQLI_ASSOC) ) return $row; // 傳回結合陣列 else return false; } // 取得查詢結果一筆記錄到結合陣列 function getRecord1() { if ( $row = mysqli_fetch_array($this->result, MYSQLI_NUM) ) return $row; // 傳回結合陣列 else return false; } } $DB_Pass="123456"; //DB密碼 ?>