简单的php mysql类库,php mysql数据库操作类的简单示例

这篇文章主要为大家详细介绍了php mysql数据库操作类的简单示例,具有一定的参考价值,可以用来参考一下。

一个php mysql数据库操作类,功能不是很完善,但非常有用,感兴趣的小伙伴,下面一起跟随512笔记的小编罗X来看看吧。

经测试代码如下:

/**

* mysql数据库操作类

*

* @param

* @arrange (512.笔记) www.512pic.com

**/

class Database{

private $host;

private $user;

private $pwd;

private $rows;

private $error;

private $result;

private $dbName;

private $connection;

private $isReady;

public function __construct(){

$this->result = null;

$this->isReady = false;

$this->error = array();

}

public function __destruct(){ @mysql_close($this->connection); }

/* setters */

public function setHost($host){ $this->host = $host; }

public function setUser($user){ $this->user = $user; }

public function setPassword($pwd){ $this->pwd = $pwd; }

public function setDbName($dbName){ $this->dbName = $dbName; }

/* other interfaces */

public function init($host=null,$user=null,$pwd=null,$dbName=null){

if(!isset($host,$user,$pwd,$dbName))

die("Please provide require settings.");

$this->setHost($host);

$this->setUser($user);

$this->setPassword($pwd);

$this->setDbName($dbName);

$this->isReady = true;

}

public function select($dbName){

$this->setDbName($dbName);

mysql_select_db($this->dbName,$this->connection) or die("The said database does not exist.");

}

public function query($sql){

$this->result = mysql_query($sql,$this->connection) or die("Invalid query string!");

}

public function connect(){

if(!$this->isReady) die("not ready to connect");

$this->connection = mysql_connect($this->host,$this->user,$this->pwd) or die("Could not connect to database. please check your credentials.");

$this->select($this->dbName);

$this->query("SET NAMES 'utf8'",$this->connection); //persian support

}

public function isConnected(){

if($this->connection)

return true;

return false;

}

public function disconnect(){

mysql_close($this->connection);

$this->connection = null;

}

public function countRows($selectMode = true){

if($selectMode)

return mysql_num_rows($this->result);

return mysql_affected_rows($this->connection);

}

public function loadRows(){

if(!$this->result) die("Nothing found!");

$this->rows = array();

while($r = mysql_fetch_array($this->result,MYSQL_BOTH))

$this->rows[] = $r;

mysql_free_result($this->result);

return $this->rows;

}

public function siftDown($dataStack){

if(!is_array($dataStack)){

$dataStack = ereg_replace("[\'\")(;|`,<>]","",$dataStack);

$dataStack = mysql_real_escape_string(trim($dataStack),$this->connection);

$dataStack = stripslashes($dataStack);

return $dataStack;

}

$safeData = array();

foreach($dataStack as $p=>$data){

$data = ereg_replace("[\'\")(;|`,<>]","",$data);

$data = mysql_real_escape_string(trim($data),$this->connection);

$data = stripslashes($data);

$safeData[$p] = $data;

}

return $safeData;

}

public function secure($data){

return sha1(md5(sha1(md5(sha1($data)))));

}

}//Database class

?>

require_once 'path/to/Database.class.php';

$db = new Database(); //Creating new object

$db->init("localhost","test_root","test_pwd!","test_db"); //initializing by credentials.

$db->connect(); //unicode support

$test_value = $db->siftDown($test_value); //preventing harmful inputs

$something_testy_else = $db->siftDown($something_testy_else);

$db->query("SELECT * FROM test_table WHERE test_field = '$test_value' AND second_test_field = '$something_testy_else' LIMIT 1");

if($db->countRows()==1)

$dbdata = $db->loadRows(); //returns a numeric/associative array as the result (MYSQL_BOTH)

//TODO: To Process $dbdata

$db->disconnect();

?>

注:关于php mysql数据库操作类的简单示例的内容就先介绍到这里,更多相关文章的可以留意512笔记的其他信息。

关键词:数据库操作

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值