LLMS_Abstract_Session_Data::__isset( string $key )
Magic isset
Parameters Parameters
- $key
-
(string) (Required) The key of the session variable.
Return Return
(bool)
Source Source
File: includes/abstracts/llms-abstract-session-data.php
public function __isset( $key ) { return isset( $this->data[ sanitize_key( $key ) ] ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Use sanitize_key() (like other methods in this class) instead of sanitize_title() . |
1.0.0 | Introduced. |