国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 網(wǎng)站 > 建站經(jīng)驗(yàn) > 正文

PHP基于MySQL數(shù)據(jù)庫(kù)實(shí)現(xiàn)對(duì)象持久層的方法

2024-04-25 20:37:31
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例講述了PHP基于MySQL數(shù)據(jù)庫(kù)實(shí)現(xiàn)對(duì)象持久層的方法。分享給大家供大家參考。具體如下:

心血來(lái)潮,做了一下PHP的對(duì)象到數(shù)據(jù)庫(kù)的簡(jiǎn)單持久層。

不常用PHP,對(duì)PHP也不熟,關(guān)于PHP反射的大部分內(nèi)容都是現(xiàn)學(xué)的。

目前功能比較弱,只是完成一些簡(jiǎn)單的工作,對(duì)象之間的關(guān)系還沒(méi)法映射,并且對(duì)象的成員只能支持string或者integer兩種類型的。

成員變量的值也沒(méi)有轉(zhuǎn)義一下。。。

下面就貼一下代碼:

首先是數(shù)據(jù)庫(kù)的相關(guān)定義,該文件定義了數(shù)據(jù)庫(kù)的連接屬性:

<?php

/*

* Filename: config.php

* Created on 2012-9-29

* Created by RobinTang

* To change the template for this generated file go to

* Window - Preferences - PHPeclipse - PHP - Code Templates

*/

// About database

define('DBHOST', 'localhost'); // 數(shù)據(jù)庫(kù)服務(wù)器

define('DBNAME', 'db_wdid'); // 數(shù)據(jù)庫(kù)名稱

define('DBUSER', 'root'); // 登陸用戶名

define('DBPSWD', 'trb'); // 登錄密碼

?>

下面是數(shù)據(jù)庫(kù)訪問(wèn)的簡(jiǎn)單封裝:

<?php

/*

* Filename: database.php

* Created on 2012-9-29

* Created by RobinTang

* To change the template for this generated file go to

* Window - Preferences - PHPeclipse - PHP - Code Templates

*/

include_once("config.php");

$debug = false;

$g_out = false;

function out($s){

global $g_out;

$g_out .= $s;

$g_out .= "/r/n";

}

function db_openconnect(){

$con = mysql_connect(DBHOST, DBUSER, DBPSWD);

if(!mysql_set_charset("utf8", $con)){

out("set mysql encoding fail");

}

if (!$con){

out('Could not connect: ' . mysql_error());

}

else{

if(!mysql_select_db(DBNAME, $con)){

$dbn = DBNAME;

out("Could select database '$dbn' : " . mysql_error());

}

$sql = "set time_zone = '+8:00';";

if(!db_onlyquery($sql, $con)){

out("select timezone fail!" . mysql_error());

}

}

return $con;

}

function db_colseconnect($con){

mysql_close($con);

}

function db_onlyquery($sql, $con){

$r = mysql_query($sql, $con);

if(!$r){

out("query '$sql' :fail");

return false;

}

else{

return $r;

}

}

function db_query($sql){

$con = db_openconnect();

$r = db_onlyquery($sql, $con);

$res = false;

if($r){

$res = true;

}

db_colseconnect($con);

return $r;

}

function db_query_effect_rows($sql){

$con = db_openconnect();

$r = db_onlyquery($sql, $con);

$res = false;

if($r){

$res = mysql_affected_rows($con);

if($res==0){

$res = -1;

}

}

else{

$res = false;

}

db_colseconnect($con);

return $res;

}

function db_getresult($sql){

$con = db_openconnect();

$r = db_onlyquery($sql, $con);

$res = false;

if($r && $arr = mysql_fetch_row($r)){

$res = $arr[0];

}

db_colseconnect($con);

return $res;

}

function db_getarray($sql){

$con = db_openconnect();

$r = db_onlyquery($sql, $con);

$ret = false;

if($r){

$row = false;

$len = 0;

$ret = Array();

$i = 0;

while($arr = mysql_fetch_row($r)){

if($row == false || $len==0){

$row = Array();

$len = count($arr);

for($i=0;$i<$len;++$i){

$key = mysql_field_name($r, $i);

array_push($row, $key);

}

}

$itm = Array();

for($i=0;$i<$len;++$i){

$itm[$row[$i]]=$arr[$i];

}

array_push($ret, $itm);

}

}

db_colseconnect($con);

return $ret;

}

?>

其實(shí)上面的兩個(gè)文件都是之前寫(xiě)好的,持久層的東西是下面的:

<?php

/*

* Filename: sinorm.php

* Created on 2012-11-4

* Created by RobinTang

* To change the template for this generated file go to

* Window - Preferences - PHPeclipse - PHP - Code Templates

*/

include_once("database.php");

function SinORM_ExecSql($sql) {

return db_query($sql);

}

function SinORM_ExecArray($sql) {

return db_getarray($sql);

}

function SinORM_ExecResult($sql){

return db_getresult($sql);

}

function SinORM_GetClassPropertys($class) {

$r = new ReflectionClass($class);

if (!$r->hasProperty('tablename')) {

throw new Exception("Class '$class' has no [tablename] property");

}

$table = $r->getStaticPropertyValue('tablename');

if (!$r->hasProperty('id')) {

throw new Exception("Class '$class' has no [id] property");

}

$mpts = Array ();

$pts = $r->getProperties(ReflectionProperty :: IS_PUBLIC);

foreach ($pts as $pt) {

if (!$pt->isStatic()) {

array_push($mpts, $pt);

}

}

return Array (

$table,

$mpts

);

}

function SinORM_GetPropertyString($pts, $class, $obj = false, $noid = false) {

if (is_null($pts)) {

list ($tb, $pts) = SinORM_GetClassPropertys($class);

}

$s = false;

$v = false;

$l = false;

foreach ($pts as $pt) {

$name = $pt->name;

if ($noid == false || $name != 'id') {

if ($l) {

$s = $s . ',';

}

$s = $s . $name;

if ($obj) {

if ($l) {

$v = $v . ',';

}

$val = $pt->getValue($obj);

if (is_null($val))

$v = $v . 'null';

if (is_string($val))

$v = $v . "'$val'";

else

$v = $v . $val;

}

$l = true;

}

}

return Array (

$s,

$v

);

}

function SinORM_GetTableName($class){

$r = new ReflectionClass($class);

if (!$r->hasProperty('tablename')) {

throw new Exception("Class '$class' has no [tablename] property");

}

$table = $r->getStaticPropertyValue('tablename');

if (!$r->hasProperty('id')) {

throw new Exception("Class '$class' has no [id] property");

}

return $table;

}

function SinORM_ResetORM($class) {

list ($tb, $pts) = SinORM_GetClassPropertys($class);

$sql = "CREATE TABLE `$tb` (`id` int NOT NULL AUTO_INCREMENT";

$r = new ReflectionClass($class);

$obj = $r->newInstance();

foreach ($pts as $pt) {

$val = $pt->getValue($obj);

$name = $pt->name;

if ($name != 'id') {

$sql = $sql . ',';

} else {

continue;

}

if (is_null($val))

throw new Exception($class . '->' . "name must have a default value");

if (is_string($val))

$sql = $sql . "`$name` text NULL";

else

$sql = $sql . "`$name` int NULL";

}

$sql = $sql . ",PRIMARY KEY (`id`));";

$dsql = "DROP TABLE IF EXISTS `$tb`;";

return SinORM_ExecSql($dsql) && SinORM_ExecSql($sql);

}

function SinORM_SaveObject($obj) {

$class = get_class($obj);

list ($tb, $pts) = SinORM_GetClassPropertys($class);

list ($names, $vals) = SinORM_GetPropertyString($pts, $class, $obj, true);

$sql = "INSERT INTO `$tb`($names) values($vals)";

if(SinORM_ExecSql($sql)){

$q = "SELECT `id` FROM `$tb` ORDER BY `id` DESC LIMIT 1;";

$id = SinORM_ExecResult($q);

if($id){

$obj->id = $id;

}

}

return false;

}

function SinORM_GetObjects($class) {

list ($tb, $pts) = SinORM_GetClassPropertys($class);

$sql = "SELECT * from `$tb`;";

$ary = SinORM_ExecArray($sql);

$res = false;

if (is_array($ary)) {

$res = Array ();

$ref = new ReflectionClass($class);

foreach ($ary as $a) {

$obj = $ref->newInstance();

foreach ($pts as $pt) {

$name = $pt->name;

$olv = $pt->getValue($obj);

$val = $a[$name];

if (is_string($olv))

$pt->setValue($obj, $val);

else

$pt->setValue($obj, intval($val));

}

array_push($res, $obj);

}

} else {

echo 'no';

}

return $res;

}

function SinORM_GetObject($class, $id) {

list ($tb, $pts) = SinORM_GetClassPropertys($class);

$sql = "SELECT * from `$tb` where `id`=$id;";

$ary = SinORM_ExecArray($sql);

$res = null;

if (is_array($ary) && count($ary) > 0) {

$res = Array ();

$ref = new ReflectionClass($class);

$a = $ary[0];

$obj = $ref->newInstance();

foreach ($pts as $pt) {

$name = $pt->name;

$olv = $pt->getValue($obj);

$val = $a[$name];

if (is_string($olv))

$pt->setValue($obj, $val);

else

$pt->setValue($obj, intval($val));

}

return $obj;

}

return null;

}

function SinORM_Update($obj) {

$class = get_class($obj);

list ($tb, $pts) = SinORM_GetClassPropertys($class);

$sql = "UPDATE `$tb` SET ";

$l = false;

foreach ($pts as $pt) {

$name = $pt->name;

$val = $pt->getValue($obj);

if ($name == 'id')

continue;

if ($l)

$sql = $sql . ',';

if (is_string($val))

$sql = $sql . "$name='$val'";

else

$sql = $sql . "$name=$val";

$l = true;

}

$sql = $sql . " WHERE `id`=$obj->id;";

return SinORM_ExecSql($sql);

}

function SinORM_SaveOrUpdate($obj) {

if (SinORM_GetObject(get_class($obj), $obj->id) == null) {

SinORM_SaveObject($obj);

} else {

SinORM_Update($obj);

}

}

function SinORM_DeleteObject($obj){

$class = get_class($obj);

$tb = SinORM_GetTableName($class);

$sql = "DELETE FROM `$tb` WHERE `id`=$obj->id;";

return SinORM_ExecSql($sql);

}

function SinORM_DeleteAll($class){

$tb = SinORM_GetTableName($class);

$sql = "DELETE FROM `$tb`;";

return SinORM_ExecSql($sql);

}

?>

下面是使用的例子:

<?php

/*

* Filename: demo.php

* Created on 2012-11-4

* Created by RobinTang

* To change the template for this generated file go to

* Window - Preferences - PHPeclipse - PHP - Code Templates

*/

include_once("sinorm.php");

// 下面是一個(gè)持久對(duì)象的類的定義

// 每個(gè)持久對(duì)象類都必須有一個(gè)叫做$tablename靜態(tài)成員,它表示數(shù)據(jù)庫(kù)中存儲(chǔ)對(duì)象的表名

// 類的每個(gè)成員都必須初始化,也就是必須給它一個(gè)初始值

// 成員變量只能為字符串或者整型,而且請(qǐng)定義成public的,只有public的成員變量會(huì)被映射

class User{

public static $tablename = 't_user'; // 靜態(tài)變量,對(duì)象的表名,必須的

public $id = 0; // 對(duì)象ID,對(duì)應(yīng)表中的主鍵,必須的,而且必須初始化為0

public $name = ''; // 姓名,必須初始化

public $age = 0; // 年齡,必須初始化

public $email = ''; // 必須初始化

}

// 注意:下面的語(yǔ)句一定要在定義好類之后運(yùn)行一下,修改了類也需要運(yùn)行一下,它完成創(chuàng)建表的工作

// SinORM_ResetORM('User'); // 這一句只是一開(kāi)始執(zhí)行一次,執(zhí)行之后就會(huì)自動(dòng)在數(shù)據(jù)庫(kù)中建立User對(duì)應(yīng)的表

$user1 = new User(); // 創(chuàng)建一個(gè)對(duì)象

$user1->name = 'TRB';

$user1->age = 22;

$user1->email = 'trbbadboy@qq.com';

SinORM_SaveObject($user1); // 把對(duì)象保存到數(shù)據(jù)庫(kù)中

// 保存之后會(huì)自動(dòng)給id的

$id = $user1->id;

echo $id . '<br/>';

$user2 = SinORM_GetObject('User', $id); // 通過(guò)ID從數(shù)據(jù)庫(kù)創(chuàng)建一個(gè)對(duì)象

echo $user2->name . '<br/>';

$user1->name = 'trb'; // 改變一下

SinORM_Update($user1); // 更新到數(shù)據(jù)庫(kù)

$user3 = SinORM_GetObject('User', $id); // 重新讀出

echo $user3->name . '<br/>';

?>

希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 尼玛县| 莫力| 彩票| 牡丹江市| 江永县| 太仆寺旗| 遂平县| 宜阳县| 秦安县| 兰坪| 安福县| 翁源县| 镇远县| 青铜峡市| 乌兰察布市| 隆子县| 当雄县| 贵州省| 泾阳县| 古丈县| 乐山市| 扬中市| 米泉市| 雷波县| 敦化市| 青铜峡市| 苏尼特右旗| 夏津县| 巴塘县| 双江| 岳普湖县| 娄烦县| 静乐县| 西乌珠穆沁旗| 田东县| 沁阳市| 福州市| 西青区| 邵阳市| 岱山县| 博罗县|