當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Parser::ArithmeticPrimary方法代碼示例

本文整理匯總了PHP中Doctrine\ORM\Query\Parser::ArithmeticPrimary方法的典型用法代碼示例。如果您正苦於以下問題:PHP Parser::ArithmeticPrimary方法的具體用法?PHP Parser::ArithmeticPrimary怎麽用?PHP Parser::ArithmeticPrimary使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Doctrine\ORM\Query\Parser的用法示例。


在下文中一共展示了Parser::ArithmeticPrimary方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: parse

 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->expression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->delimiter = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:wagnertw,項目名稱:mapasculturais,代碼行數:9,代碼來源:StringAgg.php

示例2: parse

 /**
  * {@inheritDoc}
  */
 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->firstTimeExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->secondTimeExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:amohammad,項目名稱:ZeDoctrineExtensions,代碼行數:12,代碼來源:TimeDiff.php

示例3: parse

 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->dateTime1 = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->dateTime2 = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:interactive-solutions,項目名稱:zf-stdlib,代碼行數:9,代碼來源:TimeDiff.php

示例4: parse

 /**
  * @param Parser $parser
  */
 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->needle = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->haystack = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:harentius,項目名稱:widgets-bundle,代碼行數:12,代碼來源:FindInSet.php

示例5: parse

 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->expr1 = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->expr2 = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:glanchow,項目名稱:doctrine-fuzzy,代碼行數:9,代碼來源:LevenshteinRatioFunction.php

示例6: parse

 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->firstDateExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->secondDateExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:imikay,項目名稱:doctrine-functions,代碼行數:9,代碼來源:DateDiff.php

示例7: parse

 public function parse(Parser $parser)
 {
     // levenshtein(str1, str2)
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->firstStringExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->secondStringExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:fza,項目名稱:mysql-doctrine-levenshtein-function,代碼行數:10,代碼來源:LevenshteinFunction.php

示例8: parse

 /**
  * @param Parser $parser
  */
 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->string = $parser->StringPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->from = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->count = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:morontt,項目名稱:doctrine-functions,代碼行數:14,代碼來源:Substr.php

示例9: parse

 /**
  * Parses DQL function.
  *
  * @param Parser $parser
  */
 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->entityLocation = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->latitude = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->longitude = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:adampiotrowski,項目名稱:DoctrineBehaviors,代碼行數:16,代碼來源:DistanceFunction.php

示例10: parse

 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->subject = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->search = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->replace = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:guiwoda,項目名稱:DoctrineExtensions,代碼行數:11,代碼來源:Replace.php

示例11: parse

 /**
  * {@inheritdoc}
  */
 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->parameters[self::VALUE_KEY] = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->parameters[self::FROM_TZ_KEY] = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->parameters[self::TO_TZ_KEY] = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:Hikariii,項目名稱:doctrine-extensions,代碼行數:14,代碼來源:ConvertTz.php

示例12: parse

 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->firstDateExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->intervalExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->unit = $parser->StringPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:digvijaymohite,項目名稱:e-tender,代碼行數:11,代碼來源:DateAdd.php

示例13: parse

 /**
  * @param Parser $parser
  */
 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->stringExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->lengthExpression = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->padStringExpression = $parser->StringPrimary();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:b4nan,項目名稱:doctrine,代碼行數:14,代碼來源:LpadFunction.php

示例14: parse

 public function parse(Parser $parser)
 {
     $lexer = $parser->getLexer();
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->values[] = $parser->ArithmeticPrimary();
     while (Lexer::T_COMMA === $lexer->lookahead['type']) {
         $parser->match(Lexer::T_COMMA);
         $this->values[] = $parser->ArithmeticPrimary();
     }
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:johnnoel,項目名稱:fansubebooks.chaostangent.com,代碼行數:12,代碼來源:Greatest.php

示例15: parse

 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(\Doctrine\ORM\Query\Lexer::T_IDENTIFIER);
     $parser->match(\Doctrine\ORM\Query\Lexer::T_OPEN_PARENTHESIS);
     $this->field = $parser->ArithmeticPrimary();
     $lexer = $parser->getLexer();
     while (count($this->values) < 1 || $lexer->lookahead['type'] != \Doctrine\ORM\Query\Lexer::T_CLOSE_PARENTHESIS) {
         $parser->match(\Doctrine\ORM\Query\Lexer::T_COMMA);
         $this->values[] = $parser->ArithmeticPrimary();
     }
     $parser->match(\Doctrine\ORM\Query\Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:jacksleight,項目名稱:coast-doctrine,代碼行數:12,代碼來源:Field.php


注:本文中的Doctrine\ORM\Query\Parser::ArithmeticPrimary方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。