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


PHP Element::offsetSet方法代码示例

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


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

示例1: offsetSet

 /**
  * @inheritdoc
  */
 public function offsetSet($attribute, $value)
 {
     if (in_array($attribute, ['name', 'value', 'placeholder'])) {
         $this->elements['q'][$attribute] = $value;
     }
     parent::offsetSet($attribute, $value);
 }
开发者ID:brickrouge,项目名称:brickrouge,代码行数:10,代码来源:Searchbox.php

示例2: offsetSet

 /**
  * Sets the value of a property.
  *
  * The attribute corresponding to the property is set.
  *
  * @param string $property
  * @param mixed $value
  */
 public function offsetSet($property, $value)
 {
     $this->element->offsetSet(self::serialize_property($property), $value);
 }
开发者ID:sylvaincombes,项目名称:Brickrouge,代码行数:12,代码来源:Dataset.php

示例3: offsetSet

 /**
  * Creates a new parameter
  *
  * @param string $name
  * @param mixed $value
  * @return void
  */
 public function offsetSet($name, $value)
 {
     if (is_int($name)) {
         parent::offsetSet($name, $value);
     }
     if (is_scalar($value)) {
         if (!is_string($name)) {
             throw new \InvalidArgumentException('A parameter name must be specified. This means you cannot use the $array[]="string" to add parameters.');
         }
         $this->offsetUnset($name);
         $parameter = new Parameter($name, $value);
         $parameter->parent = $this;
         $this->parameters[] = $parameter;
     } elseif ($value instanceof Parameter) {
         if (!is_null($name)) {
             throw new \InvalidArgumentException('Don\'t specify a parameter name if you\'re passing a \\Sabre\\VObject\\Parameter. Add using $array[]=$parameterObject.');
         }
         $value->parent = $this;
         $this->parameters[] = $value;
     } else {
         throw new \InvalidArgumentException('You can only add parameters to the property object');
     }
 }
开发者ID:ZerGabriel,项目名称:friendica-addons,代码行数:30,代码来源:Property.php


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