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


PHP Match::__construct方法代码示例

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


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

示例1: __construct

 /**
  * @param $password
  * @param $begin
  * @param $end
  * @param $token
  * @param $cardinality
  */
 public function __construct($password, $begin, $end, $token, $cardinality = null)
 {
     parent::__construct($password, $begin, $end, $token);
     $this->pattern = 'bruteforce';
     // Cardinality can be injected to support full password cardinality instead of token.
     $this->cardinality = $cardinality;
 }
开发者ID:live627,项目名称:Elk_Password_Entropy,代码行数:14,代码来源:Bruteforce.php

示例2: __construct

 /**
  * @param $password
  * @param $begin
  * @param $end
  * @param $token
  * @param array $params
  *   Array with keys: day, month, year, separator.
  */
 public function __construct($password, $begin, $end, $token, $params)
 {
     parent::__construct($password, $begin, $end, $token);
     $this->pattern = 'date';
     $this->day = $params['day'];
     $this->month = $params['month'];
     $this->year = $params['year'];
     $this->separator = $params['separator'];
 }
开发者ID:live627,项目名称:Elk_Password_Entropy,代码行数:17,代码来源:DateMatch.php

示例3: __construct

 /**
  * @param $password
  * @param $begin
  * @param $end
  * @param $token
  * @param array $params
  */
 public function __construct($password, $begin, $end, $token, $params = array())
 {
     parent::__construct($password, $begin, $end, $token);
     $this->pattern = 'sequence';
     if (!empty($params)) {
         $this->sequenceName = isset($params['sequenceName']) ? $params['sequenceName'] : null;
         $this->sequenceSpace = isset($params['sequenceSpace']) ? $params['sequenceSpace'] : null;
         $this->ascending = isset($params['ascending']) ? $params['ascending'] : null;
     }
 }
开发者ID:chamathsilva,项目名称:VideoBayV2.0,代码行数:17,代码来源:SequenceMatch.php

示例4: __construct

 /**
  * @param $password
  * @param $begin
  * @param $end
  * @param $token
  * @param array $params
  */
 public function __construct($password, $begin, $end, $token, $params = array())
 {
     parent::__construct($password, $begin, $end, $token);
     $this->pattern = 'dictionary';
     if (!empty($params)) {
         $this->dictionaryName = isset($params['dictionary_name']) ? $params['dictionary_name'] : null;
         $this->matchedWord = isset($params['matched_word']) ? $params['matched_word'] : null;
         $this->rank = isset($params['rank']) ? $params['rank'] : null;
     }
 }
开发者ID:chamathsilva,项目名称:VideoBayV2.0,代码行数:17,代码来源:DictionaryMatch.php

示例5: __construct

 /**
  * @param $password
  * @param $begin
  * @param $end
  * @param $token
  * @param array $params
  */
 public function __construct($password, $begin, $end, $token, $params = array())
 {
     parent::__construct($password, $begin, $end, $token);
     $this->pattern = 'spatial';
     $this->graph = $params['graph'];
     if (!empty($params)) {
         $this->shiftedCount = isset($params['shifted_count']) ? $params['shifted_count'] : null;
         $this->turns = isset($params['turns']) ? $params['turns'] : null;
     }
     // Preset properties since adjacency graph is constant for qwerty keyboard and keypad.
     $this->keyboardStartingPos = 94;
     $this->keypadStartingPos = 15;
     $this->keyboardAvgDegree = 432 / 94;
     $this->keypadAvgDegree = 76 / 15;
 }
开发者ID:live627,项目名称:Elk_Password_Entropy,代码行数:22,代码来源:SpatialMatch.php

示例6: __construct

 /**
  * Construct the Exact rule.
  *
  * @param string   $outputFormat  The output format for the rule.
  * @param mixed[]  $match         Exact match required from the media type.
  * @param string[] $ignoredFields Fields to be ignored in the match.
  */
 public function __construct(string $outputFormat, array $match, array $ignoredFields = ['q_factor'])
 {
     parent::__construct($outputFormat, $match);
     $this->ignoredFields = $ignoredFields;
 }
开发者ID:evoke-php,项目名称:evoke-php,代码行数:12,代码来源:Exact.php

示例7: __construct

 /**
  * @param $password
  * @param $begin
  * @param $end
  * @param $token
  */
 public function __construct($password, $begin, $end, $token)
 {
     parent::__construct($password, $begin, $end, $token);
     $this->pattern = 'digit';
 }
开发者ID:live627,项目名称:Elk_Password_Entropy,代码行数:11,代码来源:DigitMatch.php

示例8: __construct

 public function __construct($mid)
 {
     parent::__construct($mid);
     $this->hash_botocs = get_alt_col('leegmgr_matches', 'mid', $mid, 'hash');
 }
开发者ID:nicholasmr,项目名称:obblm,代码行数:5,代码来源:class_match_botocs.php

示例9: __construct

 /**
  * @param $password
  * @param $begin
  * @param $end
  * @param $token
  */
 public function __construct($password, $begin, $end, $token, $char)
 {
     parent::__construct($password, $begin, $end, $token);
     $this->pattern = 'repeat';
     $this->repeatedChar = $char;
 }
开发者ID:live627,项目名称:Elk_Password_Entropy,代码行数:12,代码来源:RepeatMatch.php


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