萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> Mysql數據庫操作(php教程四)

Mysql數據庫操作(php教程四)

 <?php教程
class opmysql教程{
private $host = 'localhost'; //服務器地址
private $name = 'root'; //登錄賬號
private $pwd = ''; //登錄密碼
private $dbase = 'a0606123620'; //數據庫教程名稱
private $conn = ''; //數據庫鏈接資源
private $result = ''; //結果集
private $msg = ''; //返回結果
private $fields; //返回字段
private $fieldsnum = 0; //返回字段數
private $rowsnum = 0; //返回結果數
private $rowsrst = ''; //返回單條記錄的字段數組
private $filesarray = array(); //返回字段數組
private $rowsarray = array(); //返回結果數組
private $idusername=array();
private $idsubtitle=array();
//初始化類
function __construct($host='',$name='',$pwd='',$dbase=''){
if($host != '')
$this->host = $host;
if($name != '')
$this->name = $name;
if($pwd != '')
$this->pwd = $pwd;
if($dbase != '')
$this->dbase = $dbase;
$this->init_conn();
}
//鏈接數據庫
function init_conn(){
$this->conn=@mysql_connect($this->host,$this->name,$this->pwd);
@mysql_select_db($this->dbase,$this->conn);
mysql_query("set names utf8");
}
//查詢結果
function mysql_query_rst($sql){
if($this->conn == ''){
$this->init_conn();
}
$this->result = @mysql_query($sql,$this->conn);
}

//取得查詢結果字段數目
function getfieldsnum($sql){
$this->mysql_query_rst($sql);
$this->fieldsnum = @mysql_num_fields($this->result);
}
//取得查詢結果行數目
function getrowsnum($sql){
$this->mysql_query_rst($sql);
if(mysql_errno() == 0){
return @mysql_num_rows($this->result);
}else{
return '';
}
}
//取得記錄數組有索引(單條記錄)
function getrowsrst($sql){
$this->mysql_query_rst($sql);
if(mysql_error() == 0){
$this->rowsrst = mysql_fetch_array($this->result,mysql_assoc);
return $this->rowsrst;
}else{
return '';
}
}
//取得記錄數組有索引(多條記錄)全部
function getrowsarray($sql){
$this->mysql_query_rst($sql);
if(mysql_errno() == 0){
while($row = mysql_fetch_array($this->result,mysql_assoc)) {
$this->rowsarray[] = $row;
}
return $this->rowsarray;
}else{
return '';
}
}
//更新、刪除、添加記錄數,返回影響到的行數
function uidrst($sql){
if($this->conn == ''){
$this->init_conn();
}
@mysql_query($sql);
$this->rowsnum = @mysql_affected_rows();
if(mysql_errno() == 0){
return $this->rowsnum;
}else{
return '';
}
}
//獲取對應的字段值,一條數字索引,mysql_array_rows才是帶字段索引
function getfields($sql,$fields){
$this->mysql_query_rst($sql);
if(mysql_errno() == 0){
if(mysql_num_rows($this->result) > 0){
$tmpfld = @mysql_fetch_row($this->result);
$this->fields = $tmpfld[$fields];

}
return $this->fields;
}else{
return '';
}
}

//錯誤信息
function msg_error(){
if(mysql_errno() != 0) {
$this->msg = mysql_error();
}
return $this->msg;
}
//釋放結果集
function close_rst(){
mysql_free_result($this->result);
$this->msg = '';
$this->fieldsnum = 0;
$this->rowsnum = 0;
$this->filesarray = '';
$this->rowsarray = '';
$this->idsubtitle='';
$this->idusername='';
}
//關閉數據庫
function close_conn(){
$this->close_rst();
mysql_close($this->conn);
$this->conn = '';
}
}
?>

實例方法

 

 代碼如下 復制代碼 <?php
$conne = new opmysql();
$conne-> getrowsarray($sql);
$conne-> close_conn();
$password=”123456一二三四五六”;
echo md5($password.”www.111cn.net”);//輸出為32位的密文,是沒有解密函數的,可以實現簡單的加密功能。
?>


mysql數據庫類型主要是: char(固定空間字符串,多大就是多少個中文字符)、varchar(可變空間字符串,多大就是初始化多少個中文字符)、int(整數多大就是多少位)、float(浮點數)、timestamp(日期,可選建立時自動創建,輸出時就已經是格式化過的date)、text(文本)、bool(布爾型)

寫sql語句時sum()可以統計值;order by 'id' desc limit 10,10等要活用。

在phpmyadmin學一下sql語句增刪改查就行了。

copyright © 萬盛學電腦網 all rights reserved