当前位置:首页 > PHP教程 > php高级应用 > 列表

使用PHP反射机制来构造"CREATE TABLE"的sql语句

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-13 22:44:44 浏览: 评论:0 

反射是指在PHP运行状态中,扩展分析PHP程序,导出或提取出关于类、方法、属性、参数等的详细信息,包括注释。这种动态获取的信息以及动态调用对象的方法的功能称为反射API。

反射是操纵面向对象范型中元模型的API,其功能十分强大,可帮助我们构建复杂,可扩展的应用。

其用途如:自动加载插件,自动生成文档,甚至可用来扩充PHP语言。

php反射api由若干类组成,可帮助我们用来访问程序的元数据或者同相关的注释交互。借助反射我们可以获取诸如类实现了那些方法,创建一个类的实例(不同于用new创建),调用一个方法(也不同于常规调用),传递参数,动态调用类的静态方法。

反射api是php内建的oop技术扩展,包括一些类,异常和接口,综合使用他们可用来帮助我们分析其它类,接口,方法,属性,方法和扩展,这些oop扩展被称为反射。

下面的程序使用Reflection来构造"CREATE TABLE"的sql语句。如果你不是很熟悉反射机制,可以从这个程序中看看反射的魅力与作用。

  1. <?php 
  2. /** 
  3.  * Creates an SQL 'Create Table' based upon an entity 
  4.  * @author Chris Tankersley <chris@ctankersley.com> 
  5.  * @copyright 2010 Chris Tankersley 
  6.  * @package PhpORM_Cli 
  7.  */ 
  8. class PhpORM_Cli_GenerateSql 
  9.   /** 
  10.    * Use a MySQL database 
  11.    */ 
  12.   const MYSQL = 'mysql'
  13.   /** 
  14.    * Use a SQLite database 
  15.    */ 
  16.   const SQLITE = 'sqlite'
  17.   /** 
  18.    * Types that are allowed to have a length 
  19.    * @var array 
  20.    */ 
  21.   protected $_hasLength = array('integer''varchar'); 
  22.   /** 
  23.    * Regexes needed to pull out the different comments 
  24.    * @var array 
  25.    */ 
  26.   protected $_regexes = array
  27.     'type' => '/ type=([a-z_]*) /'
  28.     'length' => '/ length=([0-9]*) /'
  29.     'default' => '/ default="(.*)" /'
  30.     'null' => '/ null /'
  31.   ); 
  32.   /** 
  33.    * Types that we support 
  34.    * @var array 
  35.    */ 
  36.   protected $_validTypes = array
  37.     'boolean' => 'BOOL'
  38.     'date' => 'DATE'
  39.     'integer' => 'INT'
  40.     'primary_autoincrement' => 'INT AUTO_INCREMENT PRIMARY KEY'
  41.     'text' => 'TEXT'
  42.     'timestamp' => 'TIMESTAMP'
  43.     'varchar' => 'VARCHAR'
  44.   ); 
  45.   /** 
  46.    * Name of the class we will interperet 
  47.    * @var string 
  48.    */ 
  49.   protected $_className
  50.   /** 
  51.    * Name of the table we are generating 
  52.    * @var string 
  53.    */ 
  54.   protected $_tableName
  55.   /** 
  56.    * The type of database we are generating 
  57.    * @var string 
  58.    */ 
  59.   protected $_type
  60.   /** 
  61.    * Sets the name of the class we are working with 
  62.    * @param string $class 
  63.    * @param string $table_name 
  64.    * @param string $type 
  65.    */ 
  66.   public function __construct($class$table_name$type = self::MYSQL) 
  67.   { 
  68.     $this->_className = $class
  69.     $this->_tableName = $table_name
  70.     $this->_type = $type
  71.   } 
  72.   /** 
  73.    * Builds an SQL Line for a property 
  74.    * @param ReflectionProperty $property 
  75.    * @return string 
  76.    */ 
  77.   protected function _getDefinition($property
  78.   { 
  79.     $type = ''
  80.     $length = ''
  81.     $null = ''
  82.     preg_match($this->_regexes['type'], $property->getDocComment(), $matches); 
  83.     if(count($matches) == 2) { 
  84.       if(array_key_exists($matches[1], $this->_validTypes)) { 
  85.         $type = $this->_validTypes[$matches[1]]; 
  86.         if(in_array($matches[1], $this->_hasLength)) { 
  87.           $length = $this->_getLength($property); 
  88.         } 
  89.         if($matches[1] != 'primary_autoincrement') { 
  90.           $null = $this->_getNull($property); 
  91.         } 
  92.         $sql = '`'.$property->getName().'` '.$type.' '.$length.' '.$null
  93.         return $sql
  94.       } else { 
  95.         throw new Exception('Type "'.$matches[1].'" is not a supported SQL type'); 
  96.       } 
  97.     } else { 
  98.       throw new Exception('Found '.count($matches).' when checking Type for property '.$property->getName()); 
  99.     } 
  100.   } 
  101.   /** 
  102.    * Extracts the Length from a property 
  103.    * @param ReflectionProperty $property 
  104.    * @return string 
  105.    */ 
  106.   protected function _getLength($property
  107.   { 
  108.     preg_match($this->_regexes['length'], $property->getDocComment(), $matches); 
  109.     if(count($matches) == 2) { 
  110.       return '('.$matches[1].')'
  111.     } else { 
  112.       return ''
  113.     } 
  114.   } 
  115.   /** 
  116.    * Determines if a Property is allowed to be null 
  117.    * @param ReflectionProperty $property 
  118.    * @return string 
  119.    */ 
  120.   protected function _getNull($property
  121.   { 
  122.     preg_match($this->_regexes['null'], $property->getDocComment(), $matches); 
  123.     if(count($matches) == 1) { 
  124.       return 'NULL'
  125.     } else { 
  126.       return 'NOT NULL'
  127.     } 
  128.   } 
  129.   /** 
  130.    * Generates a block of SQL to create a table from an Entity 
  131.    * @return string 
  132.    */ 
  133.   public function getSql() 
  134.   { 
  135.     $class = new ReflectionClass($this->_className); 
  136.     $definitions = array(); 
  137.     foreach($class->getProperties() as $property) { 
  138.       if(strpos($property->getName(), '_') === false) { 
  139.         $definitions[] = $this->_getDefinition($property); 
  140.       } 
  141.     } 
  142.     $columns = implode(",n"$definitions); 
  143.     $sql = "CREATE TABLE ".$this->_tableName." (".$columns.")"
  144.     if($this->_type == self::MYSQL) { 
  145.       $sql .= " ENGINE=MYISAM"
  146.     } 
  147.     return $sql.";"
  148.   } 
  149. }

Tags: PHP反射机制 CREATE TABLE

分享到: