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;
	}