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


PHP Index::__construct方法代码示例

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


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

示例1: __construct

 /**
  * ForeignKey
  *
  * @param   string        $name
  * @param   Table         $table
  * @param   IndexColumn[] $columns
  * @param   Table         $refTable
  * @param   IndexColumn[] $refColumns
  * @param   string        $match
  * @param   string[]      $actions
  */
 public function __construct($name, Table $table, $columns, Table $refTable, $refColumns, $match, $actions)
 {
     parent::__construct($name, $columns, 'FOREIGN');
     $this->table = $table;
     $this->refTable = $refTable;
     $this->refColumns = $refColumns;
     $this->match = $match;
     $this->actions = $actions;
 }
开发者ID:mheydt,项目名称:scalr,代码行数:20,代码来源:ForeignKey.php

示例2: __construct

 /**
  * Sets the index file, index offset and the index length
  *
  * @param string $path             Index file
  * @param string $indexFieldOffset Index field offset
  * @param string $indexFieldLength Index field length
  *
  * @throws FileExistsIOException
  * @throws IOIndexException
  */
 public function __construct($path, $indexFieldOffset, $indexFieldLength)
 {
     parent::__construct($path);
     $this->indexFieldOffset = $indexFieldOffset;
     $this->indexFieldLength = $indexFieldLength;
     $dummyLine = fgets($this->getFile()->getFilePointer());
     if (!$dummyLine) {
         throw new IOIndexException("Could not read line length");
     }
     $this->lineLength = strlen($dummyLine);
 }
开发者ID:malkusch,项目名称:php-index,代码行数:21,代码来源:FixedSizeIndex.php

示例3: __construct

 /**
  * Creates a new primary key.
  *
  * @param string $table the name of the table
  * @param array $fields an array with fields used for the key
  */
 public function __construct($table, $fields = array())
 {
     parent::__construct('PRIMARY', $table, true, $fields);
 }
开发者ID:thornberger,项目名称:empire,代码行数:10,代码来源:PrimaryKey.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->bone_path = ROOT . '/vendor/enknot/bonetool/include';
 }
开发者ID:enknot,项目名称:bonetool,代码行数:5,代码来源:BoneInclude.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     // 回调函数
     $this->api_callback = empty($_REQUEST['callback']) ? $this->api_callback : $_REQUEST['callback'];
     $this->api_callback = str_ireplace(array('cookie', 'alert'), '', $this->api_callback);
     preg_match('/[a-z0-9\\.]+/i', $this->api_callback, $matches);
     $this->api_callback = empty($matches[0]) ? null : $matches[0];
     // data中的key
     $this->api_data_key = isset($_REQUEST['data_key']) ? true : false;
 }
开发者ID:iorichina,项目名称:geo,代码行数:11,代码来源:app.Api.php

示例6:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:flyingfish2013,项目名称:Syssh,代码行数:4,代码来源:starsys_index.php

示例7: __construct

 /**
  * Sets the index file, container name and the index attribute
  *
  * @param string $path      Index file
  * @param string $element   Container name
  * @param string $attribute Index attribute name
  *
  * @throws FileExistsIOException
  * @throws IOIndexException
  */
 public function __construct($path, $element, $attribute)
 {
     parent::__construct($path);
     $this->element = $element;
     $this->attribute = $attribute;
 }
开发者ID:malkusch,项目名称:php-index,代码行数:16,代码来源:XmlIndex.php


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