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


PHP Parser::SimpleArithmeticExpression方法代碼示例

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


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

示例1: parse

 /**
  * @override
  */
 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->firstSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
     $parser->match(Lexer::T_COMMA);
     $this->secondSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:alfredocoj,項目名稱:blogzf2tutorial,代碼行數:12,代碼來源:ModFunction.php

示例2: parse

 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->arithmeticExpression = $parser->SimpleArithmeticExpression();
     try {
         $parser->match(Lexer::T_COMMA);
         $this->optionalSecondExpression = $parser->SimpleArithmeticExpression();
         $parser->match(Lexer::T_CLOSE_PARENTHESIS);
     } catch (QueryException $e) {
         $parser->match(Lexer::T_CLOSE_PARENTHESIS);
     }
 }
開發者ID:uppaljs,項目名稱:pakistan-vlmis-v2,代碼行數:13,代碼來源:Atan.php

示例3: parse

 /**
  * @override
  */
 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->stringPrimary = $parser->StringPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->firstSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
     $lexer = $parser->getLexer();
     if ($lexer->isNextToken(Lexer::T_COMMA)) {
         $parser->match(Lexer::T_COMMA);
         $this->secondSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
     }
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:yamildiego,項目名稱:JY,代碼行數:17,代碼來源:SubstringFunction.php

示例4: parse

 /**
  * Parse
  *
  * @param \Doctrine\ORM\Query\Parser $parser
  */
 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->arithmeticExpression = $parser->SimpleArithmeticExpression();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:geoffreytran,項目名稱:zym,代碼行數:12,代碼來源:RadiansFunction.php

示例5: parse

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

示例6: parse

 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $lexer = $parser->getLexer();
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->arithmeticExpression = $parser->SimpleArithmeticExpression();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:uppaljs,項目名稱:pakistan-vlmis-v2,代碼行數:8,代碼來源:Asin.php

示例7: parse

 public function parse(Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     // (2)
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     // (3)
     $this->f1 = $parser->SimpleConditionalExpression();
     // (4)
     $parser->match(Lexer::T_COMMA);
     // (5)
     $this->f2 = $parser->SimpleArithmeticExpression();
     // (6)
     $parser->match(Lexer::T_COMMA);
     // (5)
     $this->f3 = $parser->SimpleArithmeticExpression();
     // (6)
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
     // (3)
 }
開發者ID:hisie,項目名稱:UsefulBundle,代碼行數:19,代碼來源:IfStatement.php

示例8: parse

 /**
  * @param \Doctrine\ORM\Query\Parser $parser
  */
 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->value = $parser->ArithmeticPrimary();
     $parser->match(Lexer::T_COMMA);
     $this->delimiter = $parser->StringExpression();
     $parser->match(Lexer::T_COMMA);
     $this->count = $parser->SimpleArithmeticExpression();
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:7rin0,項目名稱:BigfootCoreBundle,代碼行數:14,代碼來源:SubstringIndex.php

示例9: parse

 /**
  * parse
  *
  * @param \Doctrine\ORM\Query\Parser $parser
  * @access public
  * @return void
  */
 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->simpleArithmeticExpression = $parser->SimpleArithmeticExpression();
     $parser->match(Lexer::T_COMMA);
     $this->roundPrecission = $parser->ArithmeticExpression();
     if ($this->roundPrecission == null) {
         $this->roundPrecission = 0;
     }
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:bares43,項目名稱:bachelor-thesis-survey,代碼行數:19,代碼來源:Round.php

示例10: parse

 public function parse(\Doctrine\ORM\Query\Parser $parser)
 {
     $lexer = $parser->getLexer();
     $parser->match(Lexer::T_IDENTIFIER);
     $parser->match(Lexer::T_OPEN_PARENTHESIS);
     $this->firstExpression = $parser->SimpleArithmeticExpression();
     // parse second parameter if available
     if (Lexer::T_COMMA === $lexer->lookahead['type']) {
         $parser->match(Lexer::T_COMMA);
         $this->secondExpression = $parser->ArithmeticPrimary();
     }
     $parser->match(Lexer::T_CLOSE_PARENTHESIS);
 }
開發者ID:pitpit,項目名稱:DoctrineExtensions,代碼行數:13,代碼來源:Round.php


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