WpOrg\Requests
Session::__set
Set a property's value
Method of the class: Session{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Session = new Session(); $Session->__set( $name, $value );
- $name(string) (required)
- Property name.
- $value(mixed) (required)
- Property value.
Session::__set() Session:: set code WP 7.0
public function __set($name, $value) {
$this->options[$name] = $value;
}