當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。