LLMS_Session::get( string $key )

Retrieve a session variable


Description Description


Parameters Parameters

$key

(string) (Required)


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/class.llms.session.php

	public function get( $key ) {
		$key = sanitize_key( $key );
		return isset( $this->session[ $key ] ) ? maybe_unserialize( $this->session[ $key ] ) : false;
	}


Top ↑

User Contributed Notes User Contributed Notes

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