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


PHP ReflectionFunction::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Constructor
  *
  * @param string $name
  * @access public
  * @return void
  */
 public function __construct($name)
 {
     parent::__construct($name);
     // get the annotations
     $parser = new AnnotationParser($this->getDocComment());
     $this->annotations = $parser->getAnnotationArray();
 }
开发者ID:mattrwallace,项目名称:exegesis,代码行数:14,代码来源:annotationfunction.php

示例2: __construct

 /**
  * Constructs a new ReflectionFunction object.
  *
  * @param string $function
  * @throws ReflectionException
  * @return ReflectionFunction
  */
 public final function __construct($function)
 {
     $bt = debug_backtrace();
     if (!isset($bt[1]['class']) || $bt[1]['class'] !== __CLASS__) {
         throw new ReflectionException('ReflectionClass\' constructor cannot be called from outside the class');
     }
     parent::__construct($function);
 }
开发者ID:mseshachalam,项目名称:reflection,代码行数:15,代码来源:ReflectionFunction.php

示例3: __construct

 /**
  * Constructs a new ezcReflectionFunction object
  *
  * Throws an Exception in case the given function does not exist
  * @param string|ReflectionFunction $function
  *        Name or ReflectionFunction object of the function to be reflected
  */
 public function __construct($function)
 {
     if (!$function instanceof ReflectionFunction) {
         parent::__construct($function);
     }
     $this->reflectionSource = $function;
     $this->docParser = ezcReflection::getDocCommentParser();
     $this->docParser->parse($this->getDocComment());
 }
开发者ID:zetacomponents,项目名称:reflection,代码行数:16,代码来源:function.php

示例4: __construct

 /**
  * Constructor.
  *
  * @param string $functionName Function name
  * @param \TokenReflection\Broker $broker Reflection broker
  */
 public function __construct($functionName, Broker $broker)
 {
     parent::__construct($functionName);
     $this->broker = $broker;
 }
开发者ID:ppwalks33,项目名称:cleansure,代码行数:11,代码来源:ReflectionFunction.php

示例5: __construct

 public function __construct($name)
 {
     parent::__construct($this->value = $name);
 }
开发者ID:nette,项目名称:reflection,代码行数:4,代码来源:GlobalFunction.php

示例6: __initialize

 /**
  * Implementation of internal reflection initialization
  *
  * @return void
  */
 protected function __initialize()
 {
     parent::__construct($this->getName());
 }
开发者ID:console-helpers,项目名称:parser-reflection,代码行数:9,代码来源:ReflectionFunction.php

示例7: __construct

 public function __construct($name)
 {
     parent::__construct($name);
     $this->annotation = Notoj::parseDocComment($this);
 }
开发者ID:agpmedia,项目名称:notoj,代码行数:5,代码来源:ReflectionFunction.php

示例8: __construct

 /**
  *
  * @param string $name
  */
 public function __construct($name)
 {
     parent::__construct($name);
     $this->process();
 }
开发者ID:nebiros,项目名称:yasc,代码行数:9,代码来源:Function.php

示例9:

extends\ReflectionFunction{private$value;function
__construct($name){parent::__construct($this->value=$name);}function
开发者ID:JanTvrdik,项目名称:NetteExtras,代码行数:2,代码来源:loader.php

示例10: __construct

 public function __construct($func)
 {
     parent::__construct($func);
     $this->annotations = array();
     $this->extractAnnotations();
 }
开发者ID:BGCX067,项目名称:fajax-svn-to-git,代码行数:6,代码来源:class.AnnotationFunction.php

示例11: __construct

 public function __construct($name)
 {
     parent::__construct($name);
     $this->comments = PicoraDocumentation::arrayFromDocComment($this->getDocComment());
     $this->comments['name'] = $name;
     $this->comments['file'] = $this->getFileName();
 }
开发者ID:r8-forks,项目名称:Picora,代码行数:7,代码来源:PicoraDocumentation.php


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