Table of Contents
PHP基于MySQL数据库实现对象持久层的方法,mysql数据库
Home php教程 php手册 PHP基于MySQL数据库实现对象持久层的方法,mysql数据库

PHP基于MySQL数据库实现对象持久层的方法,mysql数据库

Jun 13, 2016 am 09:00 AM
mysql mysql database php persistence layer

PHP基于MySQL数据库实现对象持久层的方法,mysql数据库

本文实例讲述了PHP基于MySQL数据库实现对象持久层的方法。分享给大家供大家参考。具体如下:

心血来潮,做了一下PHP的对象到数据库的简单持久层。

不常用PHP,对PHP也不熟,关于PHP反射的大部分内容都是现学的。

目前功能比较弱,只是完成一些简单的工作,对象之间的关系还没法映射,并且对象的成员只能支持string或者integer两种类型的。

成员变量的值也没有转义一下。。。

下面就贴一下代码:

首先是数据库的相关定义,该文件定义了数据库的连接属性:

<&#63;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'); // 数据库服务器 
  define('DBNAME', 'db_wdid'); // 数据库名称 
  define('DBUSER', 'root'); // 登陆用户名 
  define('DBPSWD', 'trb'); // 登录密码 
&#63;> 
Copy after login

下面是数据库访问的简单封装:

<&#63;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; 
  } 
&#63;> 

Copy after login

其实上面的两个文件都是之前写好的,持久层的东西是下面的:

<&#63;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); 
  } 
&#63;> 

Copy after login

下面是使用的例子:

<&#63;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"); 
  // 下面是一个持久对象的类的定义 
  // 每个持久对象类都必须有一个叫做$tablename静态成员,它表示数据库中存储对象的表名 
  // 类的每个成员都必须初始化,也就是必须给它一个初始值 
  // 成员变量只能为字符串或者整型,而且请定义成public的,只有public的成员变量会被映射 
  class User{ 
    public static $tablename = 't_user';  // 静态变量,对象的表名,必须的 
    public $id = 0; // 对象ID,对应表中的主键,必须的,而且必须初始化为0 
     
    public $name = ''; // 姓名,必须初始化 
    public $age = 0; // 年龄,必须初始化 
    public $email = ''; // 必须初始化  
  } 
   
  // 注意:下面的语句一定要在定义好类之后运行一下,修改了类也需要运行一下,它完成创建表的工作 
  // SinORM_ResetORM('User'); // 这一句只是一开始执行一次,执行之后就会自动在数据库中建立User对应的表 
   
  $user1 = new User();  // 创建一个对象 
  $user1->name = 'TRB'; 
  $user1->age = 22; 
  $user1->email = 'trbbadboy@qq.com'; 
  SinORM_SaveObject($user1); // 把对象保存到数据库中 
   
  // 保存之后会自动给id的 
  $id = $user1->id; 
  echo $id . '<br/>'; 
    
  $user2 = SinORM_GetObject('User', $id); // 通过ID从数据库创建一个对象 
  echo $user2->name . '<br/>'; 
   
  $user1->name = 'trb'; // 改变一下 
  SinORM_Update($user1); // 更新到数据库 
   
  $user3 = SinORM_GetObject('User', $id); // 重新读出 
  echo $user3->name . '<br/>'; 
&#63;> 
Copy after login

希望本文所述对大家的php程序设计有所帮助。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Unable to log in to mysql as root Unable to log in to mysql as root Apr 08, 2025 pm 04:54 PM

The main reasons why you cannot log in to MySQL as root are permission problems, configuration file errors, password inconsistent, socket file problems, or firewall interception. The solution includes: check whether the bind-address parameter in the configuration file is configured correctly. Check whether the root user permissions have been modified or deleted and reset. Verify that the password is accurate, including case and special characters. Check socket file permission settings and paths. Check that the firewall blocks connections to the MySQL server.

The relationship between mysql user and database The relationship between mysql user and database Apr 08, 2025 pm 07:15 PM

In MySQL database, the relationship between the user and the database is defined by permissions and tables. The user has a username and password to access the database. Permissions are granted through the GRANT command, while the table is created by the CREATE TABLE command. To establish a relationship between a user and a database, you need to create a database, create a user, and then grant permissions.

Query optimization in MySQL is essential for improving database performance, especially when dealing with large data sets Query optimization in MySQL is essential for improving database performance, especially when dealing with large data sets Apr 08, 2025 pm 07:12 PM

1. Use the correct index to speed up data retrieval by reducing the amount of data scanned select*frommployeeswherelast_name='smith'; if you look up a column of a table multiple times, create an index for that column. If you or your app needs data from multiple columns according to the criteria, create a composite index 2. Avoid select * only those required columns, if you select all unwanted columns, this will only consume more server memory and cause the server to slow down at high load or frequency times For example, your table contains columns such as created_at and updated_at and timestamps, and then avoid selecting * because they do not require inefficient query se

mysql whether to change table lock table mysql whether to change table lock table Apr 08, 2025 pm 05:06 PM

When MySQL modifys table structure, metadata locks are usually used, which may cause the table to be locked. To reduce the impact of locks, the following measures can be taken: 1. Keep tables available with online DDL; 2. Perform complex modifications in batches; 3. Operate during small or off-peak periods; 4. Use PT-OSC tools to achieve finer control.

RDS MySQL integration with Redshift zero ETL RDS MySQL integration with Redshift zero ETL Apr 08, 2025 pm 07:06 PM

Data Integration Simplification: AmazonRDSMySQL and Redshift's zero ETL integration Efficient data integration is at the heart of a data-driven organization. Traditional ETL (extract, convert, load) processes are complex and time-consuming, especially when integrating databases (such as AmazonRDSMySQL) with data warehouses (such as Redshift). However, AWS provides zero ETL integration solutions that have completely changed this situation, providing a simplified, near-real-time solution for data migration from RDSMySQL to Redshift. This article will dive into RDSMySQL zero ETL integration with Redshift, explaining how it works and the advantages it brings to data engineers and developers.

Do mysql need to pay Do mysql need to pay Apr 08, 2025 pm 05:36 PM

MySQL has a free community version and a paid enterprise version. The community version can be used and modified for free, but the support is limited and is suitable for applications with low stability requirements and strong technical capabilities. The Enterprise Edition provides comprehensive commercial support for applications that require a stable, reliable, high-performance database and willing to pay for support. Factors considered when choosing a version include application criticality, budgeting, and technical skills. There is no perfect option, only the most suitable option, and you need to choose carefully according to the specific situation.

Can mysql run on android Can mysql run on android Apr 08, 2025 pm 05:03 PM

MySQL cannot run directly on Android, but it can be implemented indirectly by using the following methods: using the lightweight database SQLite, which is built on the Android system, does not require a separate server, and has a small resource usage, which is very suitable for mobile device applications. Remotely connect to the MySQL server and connect to the MySQL database on the remote server through the network for data reading and writing, but there are disadvantages such as strong network dependencies, security issues and server costs.

How to optimize MySQL performance for high-load applications? How to optimize MySQL performance for high-load applications? Apr 08, 2025 pm 06:03 PM

MySQL database performance optimization guide In resource-intensive applications, MySQL database plays a crucial role and is responsible for managing massive transactions. However, as the scale of application expands, database performance bottlenecks often become a constraint. This article will explore a series of effective MySQL performance optimization strategies to ensure that your application remains efficient and responsive under high loads. We will combine actual cases to explain in-depth key technologies such as indexing, query optimization, database design and caching. 1. Database architecture design and optimized database architecture is the cornerstone of MySQL performance optimization. Here are some core principles: Selecting the right data type and selecting the smallest data type that meets the needs can not only save storage space, but also improve data processing speed.

See all articles