I’m a AS3 coder and i do a bit of php and i am having a hard time doing a static class that can cache variables.
Here’s what i have so far :
<?php
class Cache {
private static $obj;
public static function getInstance() {
if (is_null(self::$obj)){
$obj = new stdClass();
}
if (!self::$instance instanceof self) {
self::$instance = new self;
}
return self::$instance;
}
public static function set($key,$value){
self::$obj->$key = $value;
}
public static function get($key){
return self::$obj->$key;
}
}
?>
And i use the following to set my variable into an object of my static class :
<?php
include 'cache.php';
$cache = new Cache();
$cache->set("foo", "bar");
?>
And this is retrieve the variable
<?php
include 'cache.php';
$cache = new Cache();
$echo = $cache->get("foo");
echo $echo //doesn't echo anything
?>
What am i doing wrong ? Thank you
I’ve adapted @prodigitalson’s code above to get something rudimentary that works (and has much room for improvement):
Usage
You’ll want this class to be available everywhere you need it, and if you want it to persist between requests, I’d consider using
Memcachedor something similar, which will give you everything you need.You could alternatively use some
SPLfunctions, likeArrayObject, if you wanted to be clever 🙂