php怎麼將數據庫封裝(php怎麼將數據庫封裝進去)

本文目錄一覽:

求PHP數據庫封裝類操作代碼

?php

class MySQL{

private $host; //服務器地址

private $name; //登錄賬號

private $pwd; //登錄密碼

private $dBase; //數據庫名稱

private $conn; //數據庫鏈接資源

private $result; //結果集

private $msg; //返回結果

private $fields; //返回字段

private $fieldsNum; //返回字段數

private $rowsNum; //返回結果數

private $rowsRst; //返回單條記錄的字段數組

private $filesArray = array(); //返回字段數組

private $rowsArray = array(); //返回結果數組

private $charset=’utf8′; //設置操作的字符集

private $query_count=0; //查詢結果次數

static private $_instance; //存儲對象

//初始化類

private 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();

}

//防止被克隆

private function __clone(){}

public static function getInstance($host=”,$name=”,$pwd=”,$dBase=”){

if(FALSE == (self::$_instance instanceof self)){

self::$_instance = new self($host,$name,$pwd,$dBase);

}

return self::$_instance;

}

public function __set($name,$value){

$this-$name=$value;

}

public function __get($name){

return $this-$name;

}

//鏈接數據庫

function init_conn(){

$this-conn=@mysql_connect($this-host,$this-name,$this-pwd) or die(‘connect db fail !’);

@mysql_select_db($this-dBase,$this-conn) or die(‘select db fail !’);

mysql_query(“set names “.$this-charset);

}

//查詢結果

function mysql_query_rst($sql){

if($this-conn == ”) $this-init_conn();

$this-result = @mysql_query($sql,$this-conn);

$this-query_count++;

}

//取得字段數

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,$type=MYSQL_BOTH){

$this-mysql_query_rst($sql);

if(empty($this-result)) return ”;

if(mysql_error() == 0){

$this-rowsRst = mysql_fetch_array($this-result,$type);

return $this-rowsRst;

}else{

return ”;

}

}

//取得記錄數組(多條記錄)

function getRowsArray($sql,$type=MYSQL_BOTH){

!empty($this-rowsArray) ? $this-rowsArray=array() : ”;

$this-mysql_query_rst($sql);

if(mysql_errno() == 0){

while($row = mysql_fetch_array($this-result,$type)) {

$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 ”;

}

}

//返回最近插入的一條數據庫的id值

function returnRstId($sql){

if($this-conn == ”){

$this-init_conn();

}

@mysql_query($sql);

if(mysql_errno() == 0){

return mysql_insert_id();

}else{

return ”;

}

}

//獲取對應的字段值

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 = ”;

}

//關閉數據庫

function close_conn(){

$this-close_rst();

mysql_close($this-conn);

$this-conn = ”;

}

//取得數據庫版本

function db_version() {

return mysql_get_server_info();

}

}

PHP中對數據庫操作的封裝,有什麼好的例子嗎

類文件mysql.class.php:

?php

class Mysql{

//數據庫連接返回值

private $conn;

/**

* [構造函數,返回值給$conn]

* @param [string] $hostname [主機名]

* @param [string] $username[用戶名]

* @param [string] $password[密碼]

* @param [string] $dbname[數據庫名]

* @param [string] $charset[字符集]

* @return [null]

*/

function __construct($hostname,$username,$password,$dbname,$charset=’utf8′){

$config = @mysql_connect($hostname,$username,$password);

if(!$config){

echo ‘連接失敗,請聯繫管理員’;

exit;

  }

  $this-conn = $config;

  $res = mysql_select_db($dbname);

  if(!$res){

  echo ‘連接失敗,請聯繫管理員’;

  exit;

  }

  mysql_set_charset($charset);

}

function __destruct(){

  mysql_close();

}

/**

* [getAll 獲取所有信息]

* @param [string] $sql [sql語句]

* @return [array] [返回二維數組]

*/

function getAll($sql){

  $result = mysql_query($sql,$this-conn);

  $data = array();

  if($result  mysql_num_rows($result)0){

    while($row = mysql_fetch_assoc($result)){

    $data[] = $row;

    }

  }

  return $data;

}

/**

* [getOne 獲取單條數據]

* @param [string] $sql [sql語句]

* @return [array] [返回一維數組]

*/

function getOne($sql){

  $result = mysql_query($sql,$this-conn);

  $data = array();

  if($result  mysql_num_rows($result)0){

    $data = mysql_fetch_assoc($result);

  }

  return $data;

}

/**

* [getOne 獲取單條數據]

* @param [string] $table [表名]

* @param [string] $data [由字段名當鍵,屬性當鍵值的一維數組]

* @return [type] [返回false或者插入數據的id]

*/

function insert($table,$data){

  $str = ”;

  $str .=”INSERT INTO `$table` “;

  $str .=”(`”.implode(“`,`”,array_keys($data)).”`) “;

  $str .=” VALUES “;

  $str .= “(‘”.implode(“‘,'”,$data).”‘)”;

  $res = mysql_query($str,$this-conn);

  if($res  mysql_affected_rows()0){

      return mysql_insert_id();

  }else{

    return false;

  }

}

/**

* [update 更新數據庫]

* @param [string] $table [表名]

* @param [array] $data [更新的數據,由字段名當鍵,屬性當鍵值的一維數組]

* @param [string] $where [條件,‘字段名’=‘字段屬性’]

* @return [type] [更新成功返回影響的行數,更新失敗返回false]

*/

function update($table,$data,$where){

  $sql = ‘UPDATE ‘.$table.’ SET ‘;

  foreach($data as $key = $value){

  $sql .= “`{$key}`='{$value}’,”;

  }

  $sql = rtrim($sql,’,’);

  $sql .= ” WHERE $where”;

  $res = mysql_query($sql,$this-conn);

  if($res  mysql_affected_rows()){

    return mysql_affected_rows();

  }else{

  return false;

  }

}

/**

* [delete 刪除數據]

* @param [string] $table [表名]

* @param [string] $where [條件,‘字段名’=‘字段屬性’]

* @return [type] [成功返回影響的行數,失敗返回false]

*/

function del($table,$where){

  $sql = “DELETE FROM `{$table}` WHERE {$where}”;

  $res = mysql_query($sql,$this-conn);

  if($res  mysql_affected_rows()){

    return mysql_affected_rows();

  }else{

  return false;

  }

}

}

?

使用案例:

?php

//包含數據庫操作類文件

include ‘mysql.class.php’;

//設置傳入參數

$hostname=’localhost’;

$username=’root’;

$password=’123456′;

$dbname=’aisi’;

$charset = ‘utf8’;

//實例化對象

$db = new Mysql($hostname,$username,$password,$dbname);

//獲取一條數據

$sql = “SELECT count(as_article_id) as count FROM as_article where as_article_type_id=1”;

$count = $db-getOne($sql);

//獲取多條數據

$sql = “SELECT * FROM as_article where as_article_type_id=1 order by as_article_addtime desc limit $start,$limit”;

$service = $db-getAll($sql);

//插入數據

$arr = array(

‘as_article_title’=’數據庫操作類’,

‘as_article_author’=’rex’,

);

$res = $db-insert(‘as_article’,$arr);

//更新數據

$arr = array(

‘as_article_title’=’實例化對象’,

‘as_article_author’=’Lee’,

);

$where = “as_article_id=1”;

$res = $db-update(‘as_article’,$arr,$where);

//刪除數據

$where = “as_article_id=1”;

$res = $db-del(‘as_article’,$where);

?

怎麼將PHP查詢的多條數據封裝成數組 並且轉為json的數據格式

正常來說,循環賦值是沒問題的,你需要看下,你的sql在數據庫中能查出幾條結果,

最好數組還是這樣定義$arr = array();而不是$arr[] = array();

簡單的測試你數據是否只有一條的方法是在while裡邊打印個東西

echo $sql;//打印下你的sql語句,用phpmyadmin執行下看結果

$cnt=1;

while($row = $db – fetchassoc($result))

{

$cnt++;

echo $cnt;

}

PHP訪問MYSQL數據庫封裝類(附函數說明)

複製代碼

代碼如下:

?php

/*

MYSQL

數據庫訪問封裝類

MYSQL

數據訪問方式,php4支持以mysql_開頭的過程訪問方式,php5開始支持以mysqli_開頭的過程和mysqli面向對象

訪問方式,本封裝類以mysql_封裝

數據訪問的一般流程:

1,連接數據庫

mysql_connect

or

mysql_pconnect

2,選擇數據庫

mysql_select_db

3,執行SQL查詢

mysql_query

4,處理返回的數據

mysql_fetch_array

mysql_num_rows

mysql_fetch_assoc

mysql_fetch_row

etc

*/

class

db_mysql

{

var

$querynum

=

;

//當前頁面進程查詢數據庫的次數

var

$dblink

;

//數據庫連接資源

//鏈接數據庫

function

connect($dbhost,$dbuser,$dbpw,$dbname=”,$dbcharset=’utf-8′,$pconnect=0

,

$halt=true)

{

$func

=

empty($pconnect)

?

‘mysql_connect’

:

‘mysql_pconnect’

;

$this-dblink

=

@$func($dbhost,$dbuser,$dbpw)

;

if

($halt

!$this-dblink)

{

$this-halt(“無法鏈接數據庫!”);

}

//設置查詢字符集

mysql_query(“SET

character_set_connection={$dbcharset},character_set_results={$dbcharset},character_set_client=binary”,$this-dblink)

;

//選擇數據庫

$dbname

@mysql_select_db($dbname,$this-dblink)

;

}

//選擇數據庫

function

select_db($dbname)

{

return

mysql_select_db($dbname,$this-dblink);

}

//執行SQL查詢

function

query($sql)

{

$this-querynum++

;

return

mysql_query($sql,$this-dblink)

;

}

//返回最近一次與連接句柄關聯的INSERT,UPDATE

或DELETE

查詢所影響的記錄行數

function

affected_rows()

{

return

mysql_affected_rows($this-dblink)

;

}

//取得結果集中行的數目,只對select查詢的結果集有效

function

num_rows($result)

{

return

mysql_num_rows($result)

;

}

//獲得單格的查詢結果

function

result($result,$row=0)

{

return

mysql_result($result,$row)

;

}

//取得上一步

INSERT

操作產生的

ID,只對錶有AUTO_INCREMENT

ID的操作有效

function

insert_id()

{

return

($id

=

mysql_insert_id($this-dblink))

=

?

$id

:

$this-result($this-query(“SELECT

last_insert_id()”),

0);

}

//從結果集提取當前行,以數字為key表示的關聯數組形式返回

function

fetch_row($result)

{

return

mysql_fetch_row($result)

;

}

//從結果集提取當前行,以字段名為key表示的關聯數組形式返回

function

fetch_assoc($result)

{

return

mysql_fetch_assoc($result);

}

//從結果集提取當前行,以字段名和數字為key表示的關聯數組形式返回

function

fetch_array($result)

{

return

mysql_fetch_array($result);

}

//關閉鏈接

function

close()

{

return

mysql_close($this-dblink)

;

}

//輸出簡單的錯誤html提示信息並終止程序

function

halt($msg)

{

$message

=

“html\nhead\n”

;

$message

.=

“meta

content=’text/html;charset=gb2312’\n”

;

$message

.=

“/head\n”

;

$message

.=

“body\n”

;

$message

.=

“數據庫出錯:”.htmlspecialchars($msg).”\n”

;

$message

.=

“/body\n”

;

$message

.=

“/html”

;

echo

$message

;

exit

;

}

}

?

php查找MySQL中某張表的數據,如何封裝為json數組?

$sql

=

“SELECT*

FROM

table1

“;//查詢表table1

$result

=

mysqli_query($conn,$sql);//將表與數據庫連接

$output

=

[];

//用於盛放查詢到的商品

while(($row=mysqli_fetch_assoc($result))!==null){

$output[]

=

$row;

}

echo

json_encode($output);//輸出查詢到的數據

如何用tp封裝好的方法操作數據庫

一、鏈接數據庫

(1)找到模塊文件夾中的Conf文件夾,然後進行編寫config.php文件

我這裡是這樣的文件路徑

(2)打開這個config.php文件,然後找到父類配置文件convention.php文件,將關於”數據庫”的部分複製粘貼到config.php配置文件中

1

2

3

4

5

6

7

8

9

/* 數據庫設置 */

‘DB_TYPE’ = ”, // 數據庫類型

‘DB_HOST’ = ”, // 服務器地址

‘DB_NAME’ = ”, // 數據庫名

‘DB_USER’ = ”, // 用戶名

‘DB_PWD’ = ”, // 密碼

‘DB_PORT’ = ”, // 端口

‘DB_PREFIX’ = ”, // 數據庫表前綴

‘DB_FIELDS_CACHE’ = true, // 啟用字段緩存(開發時這個要寫成false)

下面是我的數據庫連接內容

1

2

3

4

5

6

7

8

9

10

11

12

13

14

?php

return array(

//’配置項’=’配置值’

/* 數據庫設置 */

‘DB_TYPE’ = ‘mysql’, // 數據庫類型

‘DB_HOST’ = ‘localhost’, // 服務器地址

‘DB_NAME’ = ‘test3’, // 數據庫名

‘DB_USER’ = ‘root’, // 用戶名

‘DB_PWD’ = ‘123’, // 密碼

‘DB_PORT’ = ‘3306’, // 端口

‘DB_PREFIX’ = ”, // 數據庫表前綴

‘DB_FIELDS_CACHE’ = false, // 啟用字段緩存(開發時這個要是false)

);

連接成功後,然後就是新建模型文件了

原創文章,作者:AETV4,如若轉載,請註明出處:https://www.506064.com/zh-hant/n/130493.html

(0)
打賞 微信掃一掃 微信掃一掃 支付寶掃一掃 支付寶掃一掃
AETV4的頭像AETV4
上一篇 2024-10-03 23:28
下一篇 2024-10-03 23:28

相關推薦

  • PHP和Python哪個好找工作?

    PHP和Python都是非常流行的編程語言,它們被廣泛應用於不同領域的開發中。但是,在考慮擇業方向的時候,很多人都會有一個問題:PHP和Python哪個好找工作?這篇文章將從多個方…

    編程 2025-04-29
  • Python 常用數據庫有哪些?

    在Python編程中,數據庫是不可或缺的一部分。隨着互聯網應用的不斷擴大,處理海量數據已成為一種趨勢。Python有許多成熟的數據庫管理系統,接下來我們將從多個方面介紹Python…

    編程 2025-04-29
  • openeuler安裝數據庫方案

    本文將介紹在openeuler操作系統中安裝數據庫的方案,並提供代碼示例。 一、安裝MariaDB 下面介紹如何在openeuler中安裝MariaDB。 1、更新軟件源 sudo…

    編程 2025-04-29
  • PHP怎麼接幣

    想要在自己的網站或應用中接受比特幣等加密貨幣的支付,就需要對該加密貨幣擁有一定的了解,並使用對應的API進行開發。本文將從多個方面詳細闡述如何使用PHP接受加密貨幣的支付。 一、環…

    編程 2025-04-29
  • 數據庫第三範式會有刪除插入異常

    如果沒有正確設計數據庫,第三範式可能導致刪除和插入異常。以下是詳細解釋: 一、什麼是第三範式和範式理論? 範式理論是關係數據庫中的一個規範化過程。第三範式是範式理論中的一種常見形式…

    編程 2025-04-29
  • leveldb和unqlite:兩個高性能的數據庫存儲引擎

    本文將介紹兩款高性能的數據庫存儲引擎:leveldb和unqlite,並從多個方面對它們進行詳細的闡述。 一、leveldb:輕量級的鍵值存儲引擎 1、leveldb概述: lev…

    編程 2025-04-28
  • Python怎麼導入數據庫

    Python是一種高級編程語言。它具有簡單、易讀的語法和廣泛的庫,讓它成為一個靈活和強大的工具。Python的數據庫連接類型可以多種多樣,其中包括MySQL、Oracle、Post…

    編程 2025-04-28
  • 使用PHP foreach遍歷有相同屬性的值

    本篇文章將介紹如何使用PHP foreach遍歷具有相同屬性的值,並給出相應的代碼示例。 一、基礎概念 在講解如何使用PHP foreach遍歷有相同屬性的值之前,我們需要先了解幾…

    編程 2025-04-28
  • Think-ORM數據模型及數據庫核心操作

    本文主要介紹Think-ORM數據模型建立和數據庫核心操作。 一、模型定義 Think-ORM是一個開源的ORM框架,用於簡化在PHP應用中(特別是ThinkPHP)與關係數據庫之…

    編程 2025-04-27
  • PHP獲取301跳轉後的地址

    本文將為大家介紹如何使用PHP獲取301跳轉後的地址。301重定向是什麼呢?當我們訪問一個網頁A,但是它已經被遷移到了另一個地址B,此時若服務器端做了301重定向,那麼你的瀏覽器在…

    編程 2025-04-27

發表回復

登錄後才能評論