Skip to content

Instantly share code, notes, and snippets.

View zepich's full-sized avatar
👋

Matthias Zobrist zepich

👋
View GitHub Profile
@zepich
zepich / gist:6cdc4319319efa1daf8a
Last active August 29, 2015 14:05
Custom Session Handler
<?php
class SessionSaveHandler
{
public function __construct()
{
session_set_save_handler(
array($this, 'open'),
array($this, 'close'),
array($this, 'read'),