LLMS_Abstract_Session_Data::__set( string $key, string $value )

Magic set


Parameters Parameters

$key

(string) (Required) The key of the session variable.

$value

(string) (Required) The value of the session variable.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/llms-abstract-session-data.php

	public function __set( $key, $value ) {
		$this->set( $key, $value );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 Moved from LLMS_Session.
1.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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