当前位置: 首页>>代码示例>>PHP>>正文


PHP Column::parse方法代码示例

本文整理汇总了PHP中Column::parse方法的典型用法代码示例。如果您正苦于以下问题:PHP Column::parse方法的具体用法?PHP Column::parse怎么用?PHP Column::parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Column的用法示例。


在下文中一共展示了Column::parse方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 private function __construct($sql)
 {
     preg_match('/^CREATE TABLE (?<name>[^\\s\\(]+) \\((?<defs>.*)\\)\\s*$/is', $sql, $matches);
     $this->m_name = $matches['name'];
     $defs = array_map('trim', preg_split('/,[\\t ]*[\\r\\n]/', $matches['defs']));
     $this->m_columns = [];
     $this->m_foreign = [];
     $this->m_unique = [];
     $constraints = [];
     foreach ($defs as $def) {
         if (count($constraints) || ($matched = self::match('(?:CONSTRAINT|PRIMARY|UNIQUE|FOREIGN|CHECK)\\b', $def, $m))) {
             if (isset($matched) && !$matched) {
                 throw new \Exception('Failed to parse start of constraint');
             }
             // table constraint
             // check for optional constraint name
             $constraintName = NULL;
             if (self::match('CONSTRAINT (?<name>' . Column::R_NAME . ')', $def, $m)) {
                 $constraintName = $m['name'];
                 $def = ltrim(substr($def, strlen($m[0])));
             }
             if ($uniqueKey = UniqueKey::parse($constraintName, $def)) {
                 $this->m_unique[] = $uniqueKey;
             } else {
                 if ($foreignKey = ForeignKey::parse($constraintName, $def)) {
                     $this->m_foreign[$foreignKey->localField()] = $foreignKey;
                 } else {
                     throw new \Exception('Failed to parse constraint');
                 }
             }
         } else {
             $column = Column::parse($def);
             $this->m_columns[$column->name()] = $column;
         }
     }
 }
开发者ID:jdauie,项目名称:bramble,代码行数:36,代码来源:Table.php

示例2: parse

 /**
  * @param string $str
  * @param string $ordering
  * @param string|null $alias
  * @return OrderingColumn
  * @throws \Trinity\Bundle\SearchBundle\Exception\SyntaxErrorException
  */
 public static function parse($str, $ordering = 'ASC', $alias = null)
 {
     $column = self::wrap(parent::parse($str, $alias));
     $column->setOrdering($ordering);
     return $column;
 }
开发者ID:modpreneur,项目名称:trinity-search,代码行数:13,代码来源:OrderingColumn.php


注:本文中的Column::parse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。