Skip to content

Instantly share code, notes, and snippets.

View krciga22's full-sized avatar

Andrew Forster krciga22

View GitHub Profile
@krciga22
krciga22 / cache.php
Last active August 29, 2015 14:00 — forked from johndyer/cache.php
<?php
class PHPCache {
protected $path = null;
protected $durationInSeconds = null;
protected $filenamePrefix = null;
protected $disableCacheForAdmin = false;
function __construct ( $path, $filenamePrefix='phpcache-', $durationInSeconds = 60) {
$this->path = $path;
$this->filenamePrefix = $filenamePrefix;