Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Session / Container.php
blob80ae76217d37019083cfe05567084a9faca532e5
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Session;
12 if (version_compare(PHP_VERSION, '5.3.4', 'lt')) {
13 class_alias('Zend\Session\AbstractContainer', 'Zend\Session\AbstractBaseContainer');
14 } else {
15 class_alias('Zend\Session\Container\PhpReferenceCompatibility', 'Zend\Session\AbstractBaseContainer');
18 /**
19 * Session storage container
21 * Allows for interacting with session storage in isolated containers, which
22 * may have their own expiries, or even expiries per key in the container.
23 * Additionally, expiries may be absolute TTLs or measured in "hops", which
24 * are based on how many times the key or container were accessed.
26 class Container extends AbstractBaseContainer