Skip to content

Instantly share code, notes, and snippets.

View benedmunds's full-sized avatar

Ben Edmunds benedmunds

View GitHub Profile
@DragonBe
DragonBe / php_conferences_2016.md
Last active February 9, 2018 08:02
Overview of PHP oriented conferences in 2016 (excluding polyglot and framework oriented conferences)
@benedmunds
benedmunds / MY_Session.php
Created July 15, 2013 23:14
MY_Session to enable native PHP sessions in CodeIgniter
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class MY_Session extends CI_Session
{
public function __construct($params = array())
{
log_message('debug', "Session Class Initialized");
// Set the super object to a local variable for use throughout the class
$this->CI =& get_instance();