LLMS_Session::__unset( string $key )

__unset function


Description Description


Parameters Parameters

$key

(string) (Required)


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.session.php

	public function __unset( $key ) {
		if ( isset( $this->session[ $key ] ) ) {
			unset( $this->session[ $key ] );
		}
	}

Top ↑

User Contributed Notes User Contributed Notes

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