Requests_Session::__get( string $key )
Get a property’s value
Parameters
- $key
-
(string) (Required) Property key
Return
(mixed|null) Property value, null if none found
Source
File: wp-includes/Requests/Session.php
public function __get($key) {
if (isset($this->options[$key])) {
return $this->options[$key];
}
return null;
}
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_session/__get