Skip to content

Instantly share code, notes, and snippets.

View krciga22's full-sized avatar

Andrew Forster krciga22

View GitHub Profile
@johndyer
johndyer / cache.php
Created February 9, 2011 03:06
Simple PHP Object Caching
<?php
// Super simple caching class
class PhpCache {
protected $path = null;
protected $duration = null;
function __construct ( $path, $duration = 60) {
$this->path = $path;
$this->duration = $duration;
}