Class Phalcon\Session\Bag
implements Phalcon\Di\InjectionAwareInterface
, Phalcon\Session\BagInterface
This component helps to separate session data into “namespaces”. Working by this way you can easily create groups of session variables into the application
<?php
$user = new \Phalcon\Session\Bag('user');
$user->name = "Kimbra Johnson";
$user->age = 22;
Methods
public __construct (unknown $name)
Phalcon\Session\Bag constructor
public setDI (unknown $dependencyInjector)
Sets the DependencyInjector container
public Phalcon\DiInterface getDI ()
Returns the DependencyInjector container
public initialize ()
Initializes the session bag. This method must not be called directly, the class calls it when its internal data is accesed
public destroy ()
Destroyes the session bag
<?php
$user->destroy();
public set (unknown $property, unknown $value)
Sets a value in the session bag
<?php
$user->set('name', 'Kimbra');
public __set (unknown $property, unknown $value)
Magic setter to assign values to the session bag
<?php
$user->name = "Kimbra";
public mixed get (unknown $property, [unknown $defaultValue])
Obtains a value from the session bag optionally setting a default value
<?php
echo $user->get('name', 'Kimbra');
public mixed __get (unknown $property)
Magic getter to obtain values from the session bag
<?php
echo $user->name;
public boolean has (unknown $property)
Check whether a property is defined in the internal bag
<?php
var_dump($user->has('name'));
public boolean __isset (unknown $property)
Magic isset to check whether a property is defined in the bag
<?php
var_dump(isset($user['name']));
public boolean remove (unknown $property)
Removes a property from the internal bag
<?php
$user->remove('name');
public boolean __unset (unknown $property)
Magic unset to remove items using the array syntax
<?php
unset($user['name']);