Methods |
public
|
getName(): string
Get the name of the session.
Get the name of the session.
Implemented by
|
#
|
public
|
setName(string $name): void
Set the name of the session.
Set the name of the session.
Implemented by
|
#
|
public
|
getId(): string
Get the current session ID.
Get the current session ID.
Implemented by
|
#
|
public
|
setId(string $id): void
Set the session ID.
|
#
|
public
|
start(): bool
Start the session, reading the data from a handler.
Start the session, reading the data from a handler.
Implemented by
|
#
|
public
|
save(): void
Save the session data to storage.
Save the session data to storage.
Implemented by
|
#
|
public
|
all(): array
Get all of the session data.
Get all of the session data.
Implemented by
|
#
|
public
|
exists(string|array $key): bool
Checks if a key exists.
|
#
|
public
|
has(string|array $key): bool
Checks if a key is present and not null.
Checks if a key is present and not null.
Implemented by
|
#
|
public
|
get(string $key, mixed $default = null): mixed
Get an item from the session.
Get an item from the session.
Implemented by
|
#
|
public
|
pull(string $key, mixed $default = null): mixed
Get the value of a given key and then forget it.
Get the value of a given key and then forget it.
Implemented by
|
#
|
public
|
put(string|array $key, mixed $value = null): void
Put a key / value pair or array of key / value pairs in the session.
Put a key / value pair or array of key / value pairs in the session.
Implemented by
|
#
|
public
|
flash(string $key, mixed $value = true): void
Flash a key / value pair to the session.
Flash a key / value pair to the session.
Implemented by
|
#
|
public
|
token(): string
Get the CSRF token value.
Get the CSRF token value.
Implemented by
|
#
|
public
|
regenerateToken(): void
Regenerate the CSRF token value.
Regenerate the CSRF token value.
Implemented by
|
#
|
public
|
remove(string $key): mixed
Remove an item from the session, returning its value.
Remove an item from the session, returning its value.
Implemented by
|
#
|
public
|
forget(string|array $keys): void
Remove one or many items from the session.
Remove one or many items from the session.
Implemented by
|
#
|
public
|
flush(): void
Remove all of the items from the session.
Remove all of the items from the session.
Implemented by
|
#
|
public
|
invalidate(): bool
Flush the session data and regenerate the ID.
Flush the session data and regenerate the ID.
Implemented by
|
#
|
public
|
regenerate(bool $destroy = false): bool
Generate a new session identifier.
Generate a new session identifier.
Implemented by
|
#
|
public
|
migrate(bool $destroy = false): bool
Generate a new session ID for the session.
Generate a new session ID for the session.
Implemented by
|
#
|
public
|
isStarted(): bool
Determine if the session has been started.
Determine if the session has been started.
Implemented by
|
#
|
public
|
previousUrl(): string|null
Get the previous URL from the session.
Get the previous URL from the session.
Implemented by
|
#
|
public
|
setPreviousUrl(string $url): void
Set the "previous" URL in the session.
Set the "previous" URL in the session.
Implemented by
|
#
|
public
|
getHandler(): SessionHandlerInterface
Get the session handler instance.
Get the session handler instance.
Implemented by
|
#
|
public
|
handlerNeedsRequest(): bool
Determine if the session handler needs a request.
Determine if the session handler needs a request.
Implemented by
|
#
|
public
|
setRequestOnHandler(Request $request): void
Set the request on the handler instance.
Set the request on the handler instance.
Implemented by
|
#
|