DDR爱好者之家 Design By 杰米
反射是指在PHP运行状态中,扩展分析PHP程序,导出或提取出关于类、方法、属性、参数等的详细信息,包括注释。这种动态获取的信息以及动态调用对象的方法的功能称为反射API。反射是操纵面向对象范型中元模型的API,其功能十分强大,可帮助我们构建复杂,可扩展的应用。
其用途如:自动加载插件,自动生成文档,甚至可用来扩充PHP语言。
php反射api由若干类组成,可帮助我们用来访问程序的元数据或者同相关的注释交互。借助反射我们可以获取诸如类实现了那些方法,创建一个类的实例(不同于用new创建),调用一个方法(也不同于常规调用),传递参数,动态调用类的静态方法。
反射api是php内建的oop技术扩展,包括一些类,异常和接口,综合使用他们可用来帮助我们分析其它类,接口,方法,属性,方法和扩展。这些oop扩展被称为反射。
下面的程序使用Reflection来构造"CREATE TABLE"的sql语句。如果你不是很熟悉反射机制,可以从这个程序中看看反射的魅力与作用。
<"(.*)" /', '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.";"; } }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
更新日志
2024年11月29日
2024年11月29日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]