|
Procedural File: Session.php
Source Location: Program_Root/Session/Session.php
Classes:
Session
Session is a class that manages visitor sessions.
Page Details:
session_append [line 831]
boolean session_append(
string $name, [string $value = false])
|
|
Appends to the value of the specified session variable.
Parameters
| string |
$name |
|
| string |
$value |
|
session_authorize [line 865]
void session_authorize(
mixed $user, mixed $pass, [mixed $id = false])
|
|
session_get [line 809]
mixed session_get(
string $name)
|
|
Retrieves the value of the specified session variable.
Parameters
session_get_manager [line 849]
object reference &session_get_manager(
)
|
|
Retrieves a copy of the session manager object.
session_get_user [line 853]
void session_get_user(
[mixed $user = false])
|
|
session_is_valid_key [line 861]
void session_is_valid_key(
mixed $user, mixed $key)
|
|
session_make_pending_key [line 857]
void session_make_pending_key(
)
|
|
session_password [line 789]
string session_password(
)
|
|
Retrieves the current user's encrypted password from the global $session object. Useful for custom authentication situations, such as the changing of one's password.
session_save [line 840]
Saves the current user's session data.
session_set [line 820]
boolean session_set(
string $name, [mixed $value = false])
|
|
Modifies the value of the specified session variable.
Parameters
| string |
$name |
|
| mixed |
$value |
|
session_username [line 778]
string session_username(
)
|
|
Retrieves the current user's username from the global $session object.
session_valid [line 799]
Determines whether the current user is valid.
|