| Current Path : /var/www/clients/client3/web2/web/vendor/laminas/laminas-session/src/Storage/ |
| Current File : /var/www/clients/client3/web2/web/vendor/laminas/laminas-session/src/Storage/SessionStorage.php |
<?php
namespace Laminas\Session\Storage;
use ArrayIterator;
use Laminas\Stdlib\ArrayObject;
use function is_object;
/**
* Session storage in $_SESSION
*
* Replaces the $_SESSION superglobal with an ArrayObject that allows for
* property access, metadata storage, locking, and immutability.
*/
class SessionStorage extends ArrayStorage
{
/**
* Constructor
*
* Sets the $_SESSION superglobal to an ArrayObject, maintaining previous
* values if any discovered.
*
* @param array|null $input
* @param int $flags
* @param string $iteratorClass
*/
public function __construct(
$input = null,
$flags = ArrayObject::ARRAY_AS_PROPS,
$iteratorClass = ArrayIterator::class
) {
$resetSession = true;
if ((null === $input) && isset($_SESSION)) {
$input = $_SESSION;
if (is_object($input) && $_SESSION instanceof ArrayObject) {
$resetSession = false;
} elseif (is_object($input) && ! $_SESSION instanceof ArrayObject) {
$input = (array) $input;
}
} elseif (null === $input) {
$input = [];
}
parent::__construct($input, $flags, $iteratorClass);
if ($resetSession) {
$_SESSION = $this;
}
}
/**
* Destructor
*
* Resets $_SESSION superglobal to an array, by casting object using
* getArrayCopy().
*
* @return void
*/
public function __destruct()
{
$_SESSION = (array) $this->getArrayCopy();
}
/**
* Load session object from an existing array
*
* Ensures $_SESSION is set to an instance of the object when complete.
*
* @param array $array
* @return SessionStorage
*/
public function fromArray(array $array)
{
parent::fromArray($array);
if ($_SESSION !== $this) {
$_SESSION = $this;
}
return $this;
}
/**
* Mark object as isImmutable
*
* @return SessionStorage
*/
public function markImmutable()
{
$this['_IMMUTABLE'] = true;
return $this;
}
/**
* Determine if this object is isImmutable
*
* @return bool
*/
public function isImmutable()
{
return isset($this['_IMMUTABLE']) && $this['_IMMUTABLE'];
}
}