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


PHP Expr::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Constructs a static method call node.
  *
  * @param Node\Name|Expr $class Class name
  * @param string|Expr $name Method name
  * @param Node\Arg[] $args Arguments
  * @param array $attributes Additional attributes
  */
 public function __construct($class, $name, array $args = array(), array $attributes = array())
 {
     parent::__construct($attributes);
     $this->class = $class;
     $this->name = $name;
     $this->args = $args;
 }
开发者ID:JesseDarellMoore,项目名称:CS499,代码行数:15,代码来源:StaticCall.php

示例2: __construct

 /**
  * Constructs an array item node.
  *
  * @param Expr $value Value
  * @param null|Expr $key Key
  * @param bool $byRef Whether to assign by reference
  * @param array $attributes Additional attributes
  */
 public function __construct(Expr $value, Expr $key = null, $byRef = false, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->key = $key;
     $this->value = $value;
     $this->byRef = $byRef;
 }
开发者ID:JesseDarellMoore,项目名称:CS499,代码行数:15,代码来源:ArrayItem.php

示例3: __construct

 /**
  * Constructs a ternary operator node.
  *
  * @param Expr      $cond       Condition
  * @param null|Expr $if         Expression for true
  * @param Expr      $else       Expression for false
  * @param array                    $attributes Additional attributes
  */
 public function __construct(Expr $cond, $if, Expr $else, array $attributes = array())
 {
     parent::__construct(null, $attributes);
     $this->cond = $cond;
     $this->if = $if;
     $this->else = $else;
 }
开发者ID:fakrunt,项目名称:itmarkerz,代码行数:15,代码来源:Ternary.php

示例4: __construct

 /**
  * Constructs a function call node.
  *
  * @param Expr        $var        Variable holding object
  * @param string|Expr $name       Method name
  * @param Arg[]       $args       Arguments
  * @param array       $attributes Additional attributes
  */
 public function __construct(Expr $var, $name, array $args = array(), array $attributes = array())
 {
     parent::__construct(null, $attributes);
     $this->var = $var;
     $this->name = $name;
     $this->args = $args;
 }
开发者ID:TYPO3,项目名称:extension_builder,代码行数:15,代码来源:MethodCall.php

示例5: __construct

 /**
  * Constructs a lambda function node.
  *
  * @param array $subNodes   Array of the following optional subnodes:
  *                          'static'     => false  : Whether the closure is static
  *                          'byRef'      => false  : Whether to return by reference
  *                          'params'     => array(): Parameters
  *                          'uses'       => array(): use()s
  *                          'returnType' => null   : Return type
  *                          'stmts'      => array(): Statements
  * @param array $attributes Additional attributes
  */
 public function __construct(array $subNodes = array(), array $attributes = array()) {
     parent::__construct($attributes);
     $this->static = isset($subNodes['static']) ? $subNodes['static'] : false;
     $this->byRef = isset($subNodes['byRef']) ? $subNodes['byRef'] : false;
     $this->params = isset($subNodes['params']) ? $subNodes['params'] : array();
     $this->uses = isset($subNodes['uses']) ? $subNodes['uses'] : array();
     $this->returnType = isset($subNodes['returnType']) ? $subNodes['returnType'] : null;
     $this->stmts = isset($subNodes['stmts']) ? $subNodes['stmts'] : array();
 }
开发者ID:nikic,项目名称:PHP-Parser,代码行数:21,代码来源:Closure.php

示例6: __construct

 /**
  * Constructs a shell exec (backtick) node.
  *
  * @param array $parts      Encapsed string array
  * @param array $attributes Additional attributes
  */
 public function __construct($parts, array $attributes = array())
 {
     parent::__construct(array('parts' => $parts), $attributes);
 }
开发者ID:Ingothq,项目名称:multiarmedbandit,代码行数:10,代码来源:ShellExec.php

示例7: __construct

 /**
  * Constructs a const fetch node.
  *
  * @param Name  $name       Constant name
  * @param array $attributes Additional attributes
  */
 public function __construct(Name $name, array $attributes = array())
 {
     parent::__construct(array('name' => $name), $attributes);
 }
开发者ID:Ingothq,项目名称:multiarmedbandit,代码行数:10,代码来源:ConstFetch.php

示例8: __construct

 /**
  * Constructs an "yield from" node.
  *
  * @param Expr $expr Expression
  * @param array $attributes Additional attributes
  */
 public function __construct(Expr $expr, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->expr = $expr;
 }
开发者ID:JesseDarellMoore,项目名称:CS499,代码行数:11,代码来源:YieldFrom.php

示例9: __construct

 /**
  * Constructs an array node.
  *
  * @param ArrayItem[] $items      Items of the array
  * @param array       $attributes Additional attributes
  */
 public function __construct(array $items = array(), array $attributes = array())
 {
     parent::__construct(array('items' => $items), $attributes);
 }
开发者ID:Ingothq,项目名称:multiarmedbandit,代码行数:10,代码来源:Array_.php

示例10: __construct

 /**
  * Constructs a shell exec (backtick) node.
  *
  * @param array $parts Encapsed string array
  * @param array $attributes Additional attributes
  */
 public function __construct(array $parts, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->parts = $parts;
 }
开发者ID:JesseDarellMoore,项目名称:CS499,代码行数:11,代码来源:ShellExec.php

示例11: __construct

 /**
  * Constructs a bitwise and node.
  *
  * @param Expr $left The left hand side expression
  * @param Expr $right The right hand side expression
  * @param array $attributes Additional attributes
  */
 public function __construct(Expr $left, Expr $right, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->left = $left;
     $this->right = $right;
 }
开发者ID:JesseDarellMoore,项目名称:CS499,代码行数:13,代码来源:BinaryOp.php

示例12: __construct

 /**
  * Constructs an array node.
  *
  * @param Expr[] $vars       Variables
  * @param array  $attributes Additional attributes
  */
 public function __construct(array $vars, array $attributes = array())
 {
     parent::__construct(array('vars' => $vars), $attributes);
 }
开发者ID:Ingothq,项目名称:multiarmedbandit,代码行数:10,代码来源:Isset_.php

示例13: __construct

 /**
  * Constructs an include node.
  *
  * @param Expr  $expr       Expression
  * @param int   $type       Type of include
  * @param array $attributes Additional attributes
  */
 public function __construct(Expr $expr, $type, array $attributes = array())
 {
     parent::__construct(array('expr' => $expr, 'type' => $type), $attributes);
 }
开发者ID:Ingothq,项目名称:multiarmedbandit,代码行数:11,代码来源:Include_.php

示例14: __construct

 /**
  * Constructs a yield expression node.
  *
  * @param null|Expr $value      Value expression
  * @param null|Expr $key        Key expression
  * @param array     $attributes Additional attributes
  */
 public function __construct(Expr $value = null, Expr $key = null, array $attributes = array())
 {
     parent::__construct(null, $attributes);
     $this->key = $key;
     $this->value = $value;
 }
开发者ID:EnmanuelCode,项目名称:backend-laravel,代码行数:13,代码来源:Yield_.php

示例15: __construct

 /**
  * Constructs an array index fetch node.
  *
  * @param Expr      $var        Variable
  * @param null|Expr $dim        Array index / dim
  * @param array     $attributes Additional attributes
  */
 public function __construct(Expr $var, Expr $dim = null, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->var = $var;
     $this->dim = $dim;
 }
开发者ID:qasem2rubik,项目名称:laravel,代码行数:13,代码来源:ArrayDimFetch.php


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