Requests_Session::__get( string $key )

Get a property’s value


Description Description


Parameters Parameters

$key

(string) (Required) Property key


Top ↑

Return Return

(mixed|null) Property value, null if none found


Top ↑

Source Source

File: wp-includes/Requests/Session.php

	public function __get($key) {
		if (isset($this->options[$key])) {
			return $this->options[$key];
		}

		return null;
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.