Requests_Session::__set() public WP 1.0
Set a property's value
{} It's a method of the class: Requests_Session{}
No Hooks.
Return
Null. Nothing.
Usage
$Requests_Session = new Requests_Session(); $Requests_Session->__set( $key, $value );
- $key(string) (required)
- Property key
- $value(mixed) (required)
- Property value
Code of Requests_Session::__set() Requests Session:: set WP 5.6
public function __set($key, $value) {
$this->options[$key] = $value;
}