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

首頁 > 語言 > PHP > 正文

使用PHP反射機制來構造"CREATE TABLE"的sql語句

2024-05-05 00:07:42
字體:
來源:轉載
供稿:網友

反射是指在PHP運行狀態中,擴展分析PHP程序,導出或提取出關于類、方法、屬性、參數等的詳細信息,包括注釋。這種動態獲取的信息以及動態調用對象的方法的功能稱為反射API。反射是操縱面向對象范型中元模型的API,其功能十分強大,可幫助我們構建復雜,可擴展的應用。

其用途如:自動加載插件,自動生成文檔,甚至可用來擴充PHP語言。

php反射api由若干類組成,可幫助我們用來訪問程序的元數據或者同相關的注釋交互。借助反射我們可以獲取諸如類實現了那些方法,創建一個類的實例(不同于用new創建),調用一個方法(也不同于常規調用),傳遞參數,動態調用類的靜態方法。

反射api是php內建的oop技術擴展,包括一些類,異常和接口,綜合使用他們可用來幫助我們分析其它類,接口,方法,屬性,方法和擴展。這些oop擴展被稱為反射。

下面的程序使用Reflection來構造"CREATE TABLE"的sql語句。如果你不是很熟悉反射機制,可以從這個程序中看看反射的魅力與作用。

<?php/** * Creates an SQL 'Create Table' based upon an entity * @author Chris Tankersley <chris@ctankersley.com> * @copyright 2010 Chris Tankersley * @package PhpORM_Cli */class PhpORM_Cli_GenerateSql{  /**   * Use a MySQL database   */  const MYSQL = 'mysql';  /**   * Use a SQLite database   */  const SQLITE = 'sqlite';  /**   * Types that are allowed to have a length   * @var array   */  protected $_hasLength = array('integer', 'varchar');  /**   * Regexes needed to pull out the different comments   * @var array   */  protected $_regexes = array(    'type' => '/ type=([a-z_]*) /',    'length' => '/ length=([0-9]*) /',    'default' => '/ default="(.*)" /',    'null' => '/ null /',  );  /**   * Types that we support   * @var array   */  protected $_validTypes = array(    'boolean' => 'BOOL',    'date' => 'DATE',    'integer' => 'INT',    'primary_autoincrement' => 'INT AUTO_INCREMENT PRIMARY KEY',    'text' => 'TEXT',    'timestamp' => 'TIMESTAMP',    'varchar' => 'VARCHAR',  );  /**   * Name of the class we will interperet   * @var string   */  protected $_className;  /**   * Name of the table we are generating   * @var string   */  protected $_tableName;  /**   * The type of database we are generating   * @var string   */  protected $_type;  /**   * Sets the name of the class we are working with   * @param string $class   * @param string $table_name   * @param string $type   */  public function __construct($class, $table_name, $type = self::MYSQL)  {    $this->_className = $class;    $this->_tableName = $table_name;    $this->_type = $type;  }  /**   * Builds an SQL Line for a property   * @param ReflectionProperty $property   * @return string   */  protected function _getDefinition($property)  {    $type = '';    $length = '';    $null = '';    preg_match($this->_regexes['type'], $property->getDocComment(), $matches);    if(count($matches) == 2) {      if(array_key_exists($matches[1], $this->_validTypes)) {        $type = $this->_validTypes[$matches[1]];        if(in_array($matches[1], $this->_hasLength)) {          $length = $this->_getLength($property);        }        if($matches[1] != 'primary_autoincrement') {          $null = $this->_getNull($property);        }        $sql = '`'.$property->getName().'` '.$type.' '.$length.' '.$null;        return $sql;      } else {        throw new Exception('Type "'.$matches[1].'" is not a supported SQL type');      }    } else {      throw new Exception('Found '.count($matches).' when checking Type for property '.$property->getName());    }  }  /**   * Extracts the Length from a property   * @param ReflectionProperty $property   * @return string   */  protected function _getLength($property)  {    preg_match($this->_regexes['length'], $property->getDocComment(), $matches);    if(count($matches) == 2) {      return '('.$matches[1].')';    } else {      return '';    }  }  /**   * Determines if a Property is allowed to be null   * @param ReflectionProperty $property   * @return string   */  protected function _getNull($property)  {    preg_match($this->_regexes['null'], $property->getDocComment(), $matches);    if(count($matches) == 1) {      return 'NULL';    } else {      return 'NOT NULL';    }  }  /**   * Generates a block of SQL to create a table from an Entity   * @return string   */  public function getSql()  {    $class = new ReflectionClass($this->_className);    $definitions = array();    foreach($class->getProperties() as $property) {      if(strpos($property->getName(), '_') === false) {        $definitions[] = $this->_getDefinition($property);      }    }    $columns = implode(",n", $definitions);    $sql = "CREATE TABLE ".$this->_tableName." (".$columns.")";    if($this->_type == self::MYSQL) {      $sql .= " ENGINE=MYISAM";    }    return $sql.";";  }}

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對VeVb武林網的支持。


注:相關教程知識閱讀請移步到PHP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 云龙县| 九龙坡区| 阳山县| 叶城县| 太白县| 福贡县| 明溪县| 南丹县| 留坝县| 兴宁市| 横山县| 海口市| 清镇市| 成武县| 宁远县| 双峰县| 龙海市| 卢湾区| 扬中市| 育儿| 洱源县| 屏南县| 竹北市| 定安县| 鄂温| 南昌县| 阆中市| 娄烦县| 宁津县| 加查县| 黄骅市| 莱州市| 南宫市| 齐齐哈尔市| 娄烦县| 嘉义县| 岑巩县| 女性| 简阳市| 印江| 开封市|