首页 > 作文

PHP数据库操作面向对象的优点

更新时间:2023-04-07 04:56:44 阅读: 评论:0

我们都知道如何从mysql获取我们需要的行(记录),读取数据,然后存取一些改动。很明显也很直接,在这个过程背后也没有什么拐弯抹角的。然而对于我们使用面对对象的程序设计(oop)来管理我们数据库中的数据时,这个过程就需要大大改进一下了。这篇文章将对如何设计一个面对对象的方式来管理数据库的记录做一个简单的描述。你的数据当中的所有内部逻辑关系将被封装到一个非常条理的记录对象,这个对象能够提供专门(专一)的确认代码系统,转化以及数据处理。随着zend engine2 和php5的发布,php开发者将会拥有更强大的面对对象的工具来辅助工作,这将使这个过程(面对对象地管理数据库)更有吸引力。

以下列出了一些使用对象来描叙你的数据库的有利方面:

存取方法(accessor methods)将会使你对属性的读取和写入过程做到完全的控制

每一级的每个记录和属性(的操作)都有确认过程

从关系表中智能的获取对象

重复使用的逻辑方法意味着所有的数据交互都要通过相同的基础代码(codeba),这将使维护变得更加简单

代码简单,因为不同的记录的内部逻辑都已经包含在各自所处的类(class)当中,而不是繁琐的库(lib)文件

在手工编写代码和sql查询语句时,出错的机会将更少

存取方法(accessor methods)

存取方式是通过类给实例(instance)的变量赋值。一个例子,我有一个叫ur的类,并且有一个实例$urname,我会写这样的存取方法(函数),ur->urname()和ur->turname()用来返回和给实例赋值。

<?php

class ur {

var $urname;

function urname() {

return $this->urname;

}

function turname($newurname) {

$this->urname = $newurname;

}

}

?>

这里有很好的理由让我和你一起看草原们编写这样的“特别的代码”。它将使开发者更灵活的改变类的繁琐的工作,因为这一过程将不需要其他的使用类的php代码。让我们来看看下面这个更加完善的可信赖的ur类。

变量$urname将不复存在,所有的东西都被整合的放在数组$_data当中

如果urname是空的话,urname()函数将提供一个缺省(默认)的值给它

turname()过程将在接受值之前确认urname是否合乎标准格式(如字长等)

<?php

class ur {

var $_data = array(); // associative array containing all the attributes for the ur

function urname() {

return !empty($this->_data[‘urname’]) ? $this->_data[‘urname’] : ‘(no name!)’;

}

function turname($newurname) {

if ($this->validateurname($newurname)) {

$this->_data[‘urname’] = $newurname;

}

}

function validateurname(&$somename) {

if (strlen($somename) > 12) {

throw new exception(‘your urname is too long’); // php5 only

}

return true;

}

}

?>

显而易见,这对我们控制存取对象的数据有很大帮助。如果一个程序员已经直接地存取urname的信息,以上代码的变化将会破坏他的代码。然而我们可以带数字的成语使用(类的)存取方法,就像上面代码中注释的那样,添加一个验证的功能而不需要改变任何其他的东西。注意urname的验证(例子当中是不能超过12字节)代码是独立在turname()方法之外的。从验证到存储到数据库的过程轻而易举。而且,这是个非常好的单凭经验的方法,一个方法或一个类需要做的越少,它的重复使用的机会将会越大。这在你开始写一个子类时更加明显,假如你需要一个子类,并且又要跳过(忽略)父类方法(行为)中的一些特殊的细节,如果(针对这个细节的)方法很小而又精细,(修改它)只是一瞬间的过程,而如果这个方法非常臃肿,针对多种目的,你可能将在复制子类中大量代码中郁闷而终。

比方说,假如admin是ur类的一个子类。我们对adamin的用户可能会有不同的,相对苛刻一些的密码验证方法。最好是跨过父类的验证方法和整个turname()方法(在子类中重写)。

更多关于存取器(accessor)

下面是一些其他的例子来说明如何使存取器用的更有效果。很多时候我们可能要计算结果,而不是简单的返回数组中的静态数据。存取方法还能做的一个有用的事情就是更新(updating)缓存中的值。当所有的变动(对数据的所有操作)都要通过tx()方法的时候,这正是我们根据x来重置缓存中的值的时刻。

于是我们的这个类层次变得更加明了:

内部变量$_data的处理被替换成受保护的私有方法(private methods)_getdata()和_tdata()

这类方法被转移到被称作记录(record)的抽象的超级类(super class),当然它是ur类下的子类

这个记录类(record class)掌握所有存取数组$_data的细节,在内容被修改之前调用验证的方法,以及将变更的通知发给记录(records),就像发给中心对象存储(objectstore)实例。

<?php

class ur extends rec追悼词ord {

// — omitted code — //

/**

* do not show the actual password for the ur, only some asterixes with the same strlen as the password value.

*/

function password() {

$passlength = strlen($this->_getdata(‘password’));

return str_repeat(‘*’, $passle最美校长ngth);

}

/**

* tting the ur password is not affected.

*/

function tpassword($newpassword) {

$this->_tdata(‘password’, $newpassword);

}

/**

* fullname is a derived attribute from firstname and lastname

* and does not need to be stored as a variable.

* it is therefore read-only, and has no ‘tfullname()’ accessor method.

*/

function fullname() {

return $this->firstname() . ” ” . $this->lastname();

}

/**

* spending limit returns the currency value of the ur’s spending limit.

* this value is stored as an int in the databa, eliminating the need

* for more expensive decimal or double column types.

*/

function spendinglimit() {

return $this->_getdata(‘spendinglimit’) / 100;

}

/**

* the t accessor multiplies the currency value by 100, so it can be stored in the databa again

* as an int value.

*/

function tspendinglimit($newspendlimit) {

$this->_tdata(‘spendinglimit’, $newspendlimit * 100);

}

/**

* the validatespendinglimit is not called in this class, but is called automatically by the _tdata() method

* in the record superclass, which in turn is called by the tspendinglimit() method.

*/

function validatespendinglimit(&$somelimit) {

if (is_numeric($somelimit) and $somelimit >= 0) {

return true;

} el {

throw new exception(“spending limit must be a non-negative integer”); //php5 only

}

}

}

/**

* record is the superclass for all databa objects.

*/

abstract class record {

var $_data = array();

var $_modifiedkeys = array(); // keeps track of which fields have changed since record was created/fetched

/**

* returns an element from the $_data associative array.

*/

function _getdata($attributename) {

return $this->_data[$attributename];

}

/**

* if the supplied value pass validation, this

* ts the value in the $_data associative array.

*/

function _tdata($attributename, $value) {

if ($this->validateattribute($attributename, $value)) {

if ($value != $this->_data[$attributename]) {

$this->_data[$attributename] = $value;

$this->_modifiedkeys[] = $attributename;

$this->didchange();

} el {

// the new value is identical to the current one

// no change necessary

}

}

}

/**

* for an attribute named “foo”, this looks f泰山or a method named “validatefoo()”

* and calls it if it exists. otherwi this returns true (meaning validation pasd).

*/

function validateattribute($attributename, &$value) {

$methodname = ‘validate’ . $attributename;

if (method_exists($this, $methodname)) {

return $this->$methodname($value);

} el {

return true;

}

}

function didchange() {

// notify the objectstore that this record changed

}

}

?>

现在我们拥有了一个抽象的超级类(record),我们可以将ur类里面大量的代码转移出来,而让这个ur的子类来关注ur的特殊项目如存取和验证方法。你可能已经注意到在我们的这个纪录类(record class)没有任何的sql代码。这并不是疏忽或者遗漏!对象存储类(objectstore class)(隐藏在第二部分)将负责所有和数据库的交互,还有我们的超级类record的实例化。这样使我们的record类更加瘦小而又有效率,而这对于评价我们处理大量对象的效率的时候是个重要因素。

本文发布于:2023-04-07 04:56:42,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/1fd8e331fc2b6e417f96906780a6eae6.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP数据库操作面向对象的优点.doc

本文 PDF 下载地址:PHP数据库操作面向对象的优点.pdf

标签:方法   代码   对象   过程
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图