Skip to content

Instantly share code, notes, and snippets.

@scragg0x
Created May 8, 2013 19:28
Show Gist options
  • Save scragg0x/5542953 to your computer and use it in GitHub Desktop.
Save scragg0x/5542953 to your computer and use it in GitHub Desktop.
Simple registry
<?php
/*
* G::set('foo', 'bar');
* G::get('foo'); // bar
*/
class G {
private static $_vars = array();
static function get($k){
return self::$_vars[$k];
}
static function set($k, $v){
return self::$_vars[$k] = $v;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment