本文整理汇总了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);
}
示例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);
}
示例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');
}
}