Set a value to this object’s data
Example
// Set a value for a property
$item->set('foo', 'bar');
// Set a property value directly
$item->foo = 'bar';
// Set a property using array access
$item['foo'] = 'bar';
Usage
$wireData->set(string $key, mixed $value);
Arguments
Name | Type(s) | Description |
---|---|---|
key | string | Name of property you want to set |
value | mixed | Value of property |
Return value
$this
Object instance it was called from (method supports fluent interface).
See Also
WireData methods and properties
API reference based on ProcessWire core version 3.0.236