PHP Класс Symfony\Component\HttpFoundation\Session

Автор: Fabien Potencier ([email protected])
Наследование: implements Serializable
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$attributes
$defaultLocale
$flashes
$locale
$oldFlashes
$started
$storage

Открытые методы

Метод Описание
__construct ( Symfony\Component\HttpFoundation\SessionStorage\SessionStorageInterface $storage, string $defaultLocale = 'en' ) Constructor.
__destruct ( )
all ( ) : array Returns attributes.
clear ( ) Clears all attributes.
clearFlashes ( ) Removes the flash messages.
get ( string $name, mixed $default = null ) : mixed Returns an attribute.
getAttributes ( ) : array Returns attributes.
getFlash ( string $name, string | null $default = null ) : string Gets a flash message.
getFlashes ( ) : array Gets the flash messages.
getId ( ) : mixed Returns the session ID
getLocale ( ) : string Returns the locale
has ( string $name ) : boolean Checks if an attribute is defined.
hasFlash ( string $name ) : boolean Checks whether a flash message exists.
invalidate ( ) Invalidates the current session.
migrate ( ) Migrates the current session to a new session id while maintaining all session attributes.
remove ( string $name ) Removes an attribute.
removeFlash ( string $name ) Removes a flash message.
replace ( array $attributes ) Sets attributes.
save ( )
serialize ( )
set ( string $name, mixed $value ) Sets an attribute.
setAttributes ( array $attributes ) Sets attributes.
setFlash ( string $name, string $value ) Sets a flash message.
setFlashes ( array $values ) Sets the flash messages.
setLocale ( string $locale ) Sets the locale.
start ( ) Starts the session storage.
unserialize ( $serialized )

Приватные методы

Метод Описание
setPhpDefaultLocale ( $locale )

Описание методов

__construct() публичный Метод

Constructor.
public __construct ( Symfony\Component\HttpFoundation\SessionStorage\SessionStorageInterface $storage, string $defaultLocale = 'en' )
$storage Symfony\Component\HttpFoundation\SessionStorage\SessionStorageInterface A SessionStorageInterface instance
$defaultLocale string The default locale

__destruct() публичный Метод

public __destruct ( )

all() публичный Метод

Returns attributes.
public all ( ) : array
Результат array Attributes

clear() публичный Метод

Clears all attributes.
public clear ( )

clearFlashes() публичный Метод

Removes the flash messages.
public clearFlashes ( )

get() публичный Метод

Returns an attribute.
public get ( string $name, mixed $default = null ) : mixed
$name string The attribute name
$default mixed The default value
Результат mixed

getAttributes() публичный Метод

Returns attributes.
public getAttributes ( ) : array
Результат array Attributes

getFlash() публичный Метод

Gets a flash message.
public getFlash ( string $name, string | null $default = null ) : string
$name string
$default string | null
Результат string

getFlashes() публичный Метод

Gets the flash messages.
public getFlashes ( ) : array
Результат array

getId() публичный Метод

Returns the session ID
public getId ( ) : mixed
Результат mixed The session ID

getLocale() публичный Метод

Returns the locale
public getLocale ( ) : string
Результат string

has() публичный Метод

Checks if an attribute is defined.
public has ( string $name ) : boolean
$name string The attribute name
Результат boolean true if the attribute is defined, false otherwise

hasFlash() публичный Метод

Checks whether a flash message exists.
public hasFlash ( string $name ) : boolean
$name string
Результат boolean

invalidate() публичный Метод

Invalidates the current session.
public invalidate ( )

migrate() публичный Метод

Migrates the current session to a new session id while maintaining all session attributes.
public migrate ( )

remove() публичный Метод

Removes an attribute.
public remove ( string $name )
$name string

removeFlash() публичный Метод

Removes a flash message.
public removeFlash ( string $name )
$name string

replace() публичный Метод

Sets attributes.
public replace ( array $attributes )
$attributes array Attributes

save() публичный Метод

public save ( )

serialize() публичный Метод

public serialize ( )

set() публичный Метод

Sets an attribute.
public set ( string $name, mixed $value )
$name string
$value mixed

setAttributes() публичный Метод

Sets attributes.
public setAttributes ( array $attributes )
$attributes array Attributes

setFlash() публичный Метод

Sets a flash message.
public setFlash ( string $name, string $value )
$name string
$value string

setFlashes() публичный Метод

Sets the flash messages.
public setFlashes ( array $values )
$values array

setLocale() публичный Метод

Sets the locale.
public setLocale ( string $locale )
$locale string

start() публичный Метод

Starts the session storage.
public start ( )

unserialize() публичный Метод

public unserialize ( $serialized )

Описание свойств

$attributes защищенное свойство

protected $attributes

$defaultLocale защищенное свойство

protected $defaultLocale

$flashes защищенное свойство

protected $flashes

$locale защищенное свойство

protected $locale

$oldFlashes защищенное свойство

protected $oldFlashes

$started защищенное свойство

protected $started

$storage защищенное свойство

protected $storage