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


PHP Value::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Constructor.
  * 
  * @since   __DEPLOY_VERSION__
  */
 public function __construct()
 {
     // Save time of object construction as a property.
     // Convert microtime to string to avoid loss of precision due to overflow.
     $parts = explode(' ', microtime());
     $this->raisedon = sprintf('%d%03d', $parts[1], $parts[0] * 1000);
     parent::__construct();
 }
开发者ID:chrisdavenport,项目名称:service,代码行数:13,代码来源:Message.php

示例2: __construct

 public function __construct($aComponents = array(), $sSeparator = ',', $iLineNo = 0)
 {
     parent::__construct($iLineNo);
     if (!is_array($aComponents)) {
         $aComponents = array($aComponents);
     }
     $this->aComponents = $aComponents;
     $this->sSeparator = $sSeparator;
 }
开发者ID:gabrielrosset,项目名称:moodle,代码行数:9,代码来源:ValueList.php

示例3: __construct

 /**
  * Set constructor.
  *
  * A Set object is immutable, and is used by Variables for comparing their
  * Default values or facts from the current Context.
  *
  * @param mixed $set Immutable value represented by this Value object
  */
 public function __construct($set)
 {
     parent::__construct($set);
     if (!is_array($this->value)) {
         if (is_null($this->value)) {
             $this->value = array();
         } else {
             $this->value = array($this->value);
         }
     }
     foreach ($this->value as &$value) {
         if (is_array($value)) {
             $value = new Set($value);
         }
     }
     $this->value = array_unique($this->value);
 }
开发者ID:inbarzecharia,项目名称:Ruler,代码行数:25,代码来源:Set.php

示例4: __construct

 public function __construct($value = null)
 {
     parent::__construct();
     $this->value = $value;
 }
开发者ID:stevenmaguire,项目名称:googleads-php-lib,代码行数:5,代码来源:LineItemService.php

示例5: __construct

 public function __construct($value = NULL, $ValueType = NULL)
 {
     if (get_parent_class('TextValue')) {
         parent::__construct();
     }
     $this->value = $value;
     $this->ValueType = $ValueType;
 }
开发者ID:josephbergdoll,项目名称:berrics,代码行数:8,代码来源:CustomFieldService.php

示例6: __construct

 public function __construct($value = NULL, $ValueType = NULL)
 {
     parent::__construct();
     $this->value = $value;
     $this->ValueType = $ValueType;
 }
开发者ID:venkyanthony,项目名称:google-api-dfp-php,代码行数:6,代码来源:CreativeWrapperService.php

示例7: __construct

 /**
  * @param \DateTime $date Date.
  * @param float|int|null $value Result value.
  */
 public function __construct(\DateTime $date, $value)
 {
     $this->date = $date;
     parent::__construct($value);
 }
开发者ID:edvinaskrucas,项目名称:counter,代码行数:9,代码来源:DateValue.php

示例8: __construct

 public function __construct($value)
 {
     parent::__construct($value, ValueType::STRING);
 }
开发者ID:vube,项目名称:google-visualization-php,代码行数:4,代码来源:TextValue.php

示例9: __construct

 public function __construct($value)
 {
     parent::__construct($value, ValueType::NUMBER);
 }
开发者ID:vube,项目名称:google-visualization-php,代码行数:4,代码来源:NumberValue.php

示例10: __construct

 /**
  * @param string $type
  * @param mixed $value
  * @param string $alias
  */
 public function __construct($type, $value, $alias)
 {
     $this->alias = $alias;
     parent::__construct($type, $value);
 }
开发者ID:silktide,项目名称:reposition,代码行数:10,代码来源:Reference.php

示例11: __construct

 public function __construct(&$object)
 {
     parent::__construct($object);
 }
开发者ID:sigmadesarrollo,项目名称:logisoft,代码行数:4,代码来源:ServiceDescriptor.php

示例12: __construct

 public function __construct($field = null)
 {
     parent::__construct();
     $this->addDisallowedCharacterCode(ord(':'));
     $this->set(is_null($field) ? '' : $field);
 }
开发者ID:webignition,项目名称:robots-txt-file,代码行数:6,代码来源:Field.php

示例13: __construct

 public function __construct($iLineNo = 0)
 {
     parent::__construct($iLineNo);
 }
开发者ID:gabrielrosset,项目名称:moodle,代码行数:4,代码来源:PrimitiveValue.php

示例14: __construct

 public function __construct($value)
 {
     parent::__construct($value, ValueType::BOOLEAN);
 }
开发者ID:vube,项目名称:google-visualization-php,代码行数:4,代码来源:BooleanValue.php


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