PHPSecureSession\SecureHandler::open PHP Method

open() public method

Open the session
public open ( string $save_path, string $session_name ) : boolean
$save_path string
$session_name string
return boolean
    public function open($save_path, $session_name)
    {
        $this->key = $this->getKey('KEY_' . $session_name);
        return parent::open($save_path, $session_name);
    }