當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。