本文整理匯總了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');
}
}