ini_set('session.save_path',
$this->savePath
);
} else { $sessionPath =
rtrim(ini_get('session.save_path'
), '/\\'
);
if (!
$sessionPath) { $sessionPath = WRITEPATH . 'session';
} $this->savePath =
$sessionPath;
} $this->
configureSessionIDRegex();
} /**
* Re-initialize existing session, or creates a new one.
*
* @param string $path The path where to store/retrieve the session
* @param string $name The session name
*
* @throws SessionException
*/
public function open($path,
$name): bool
{