当前位置: 首页>>代码示例>>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;未经允许,请勿转载。